mirror of
https://pagure.io/fedora-qa/createhdds.git
synced 2024-11-21 23:03:08 +00:00
pass a proper 'version' value
Summary: We can just parse the release out of the 'build' value, here. All tests still run properly because we use the * wildcard in the job groups and so on. Passing a proper 'version' value prevents T581: when you schedule jobs from an ISO, openQA will obsolete any running or scheduled jobs with the same DISTRI, FLAVOR, VERSION and ARCH. Test Plan: Schedule jobs for two composes at the same time (e.g. Branched and Rawhide), see that the second set does not obsolete the first. Make sure setting VERSION has no unexpected consequences. Reviewers: jskladan, garretraziel Reviewed By: garretraziel Subscribers: tflink Differential Revision: https://phab.qadevel.cloud.fedoraproject.org/D522
This commit is contained in:
parent
c334c7f4f5
commit
b2a19e1894
@ -80,7 +80,7 @@ def run_openqa_jobs(client, isoname, flavor, arch, build):
|
||||
params = {
|
||||
'ISO': isoname,
|
||||
'DISTRI': 'fedora',
|
||||
'VERSION': 'rawhide', # TODO
|
||||
'VERSION': build.split('_')[0],
|
||||
'FLAVOR': flavor,
|
||||
'ARCH': arch,
|
||||
'BUILD': build
|
||||
|
Loading…
Reference in New Issue
Block a user