File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -171,6 +171,7 @@ class TeuthologyConfig(YamlConfig):
171171 'koji_task_url' : 'https://kojipkgs.fedoraproject.org/work/' ,
172172 'baseurl_template' : 'http://{host}/{proj}-{pkg_type}-{dist}-{arch}-{flavor}/{uri}' ,
173173 'use_shaman' : True ,
174+ 'teuthology_git_url' : 'https://github.com/ceph/teuthology.git' ,
174175 'shaman_host' : 'shaman.ceph.com' ,
175176 'teuthology_path' : None ,
176177 'suite_verify_ceph_hash' : True ,
@@ -209,6 +210,9 @@ def get_ceph_qa_suite_git_url(self):
209210 def get_ceph_git_url (self ):
210211 return (self .ceph_git_url or
211212 self .ceph_git_base_url + 'ceph-ci.git' )
213+ def get_teuthology_git_url (self ):
214+ return self .teuthology_git_url
215+
212216
213217
214218class JobConfig (YamlConfig ):
Original file line number Diff line number Diff line change @@ -50,6 +50,8 @@ def build_git_url(project, project_owner='ceph'):
5050 base = config .get_ceph_cm_ansible_git_url ()
5151 elif project == 'ceph' :
5252 base = config .get_ceph_git_url ()
53+ elif project == 'teuthology' :
54+ base = config .get_teuthology_git_url ()
5355 else :
5456 base = 'https://github.com/{project_owner}/{project}'
5557 url_templ = re .sub (r'\.git$' , '' , base )
You can’t perform that action at this time.
0 commit comments