]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
run: allow using alternate suite repo 1030/head
authorIlya Dryomov <idryomov@gmail.com>
Fri, 17 Feb 2017 11:56:20 +0000 (12:56 +0100)
committerIlya Dryomov <idryomov@gmail.com>
Fri, 17 Feb 2017 12:19:00 +0000 (13:19 +0100)
Do the same thing we do for ceph repo to make ceph.git commit
1f82b9b9446d ("qa/tasks/workunit: use the suite repo for cloning
workunit") work for scheduled jobs.

Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
teuthology/run.py

index 4782efda2c16aac7350f787e5e664bf6fde4fe4c..3addee22701a5da238353c0e7de5666840d90af1 100644 (file)
@@ -345,6 +345,9 @@ def main(args):
     ceph_repo = config.get('repo')
     if ceph_repo:
         teuth_config.ceph_git_url = ceph_repo
+    suite_repo = config.get('suite_repo')
+    if suite_repo:
+        teuth_config.ceph_qa_suite_git_url = suite_repo
 
     config["tasks"] = validate_tasks(config)