[default: ubuntu]
--suite-branch <suite_branch>
Use this suite branch instead of the ceph branch
- --suite-base <suite_base> Use this alternative directory as-is when
+ --suite-dir <suite_dir> Use this alternative directory as-is when
assembling jobs from yaml fragments. This causes
<suite_branch> to be ignored.
machine_type = args['--machine-type']
distro = args['--distro']
suite_branch = args['--suite-branch'] or ceph_branch
- suite_base = args['--suite-base']
+ suite_dir = args['--suite-dir']
limit = int(args['--limit'])
priority = int(args['--priority'])
name = make_run_name(nice_suite, ceph_branch, kernel_branch, kernel_flavor,
machine_type)
- if suite_base:
- suite_repo_path = suite_base
+ if suite_dir:
+ suite_repo_path = suite_dir
else:
suite_repo_path = fetch_suite_repo(suite_branch, test_name=name)