mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-04 15:24:20 +00:00
use variables for release numbers in upgrade tests
Summary: Along with the matching change to fedora-openqa-schedule to pass these variables in when scheduling jobs, this avoids hardcoding the release numbers for the upgrade tests (which means someone has to remember to edit them every release). The new createhdds similarly uses get_current_release() to decide what releases it needs images for, so all this should hook up and work magically without any human intervention required. For clarity, the effect of the '_upgrade_' tests is "run an upgrade from the 'current' Fedora release to whatever release is being tested", and the effect of the '_upgrade_2_' tests is "run an upgrade from the 'previous' Fedora release to whatever release is being tested". Test Plan: Apply with D702, schedule upgrade tests, and make sure the correct hard disk image filenames are used. Reviewers: jskladan, garretraziel Reviewed By: garretraziel Subscribers: tflink Differential Revision: https://phab.qadevel.cloud.fedoraproject.org/D703
This commit is contained in:
parent
7b3bb5c252
commit
7a64700eb2
12
templates
12
templates
@ -1135,7 +1135,7 @@
|
|||||||
settings => [
|
settings => [
|
||||||
{ key => "ROOT_PASSWORD", value => "weakpassword" },
|
{ key => "ROOT_PASSWORD", value => "weakpassword" },
|
||||||
{ key => "BOOTFROM", value => "c" },
|
{ key => "BOOTFROM", value => "c" },
|
||||||
{ key => "HDD_1", value => "disk_f23_minimal_x86_64.img" },
|
{ key => "HDD_1", value => "disk_f%CURRREL%_minimal_x86_64.img" },
|
||||||
{ key => "UPGRADE", value => "minimal" },
|
{ key => "UPGRADE", value => "minimal" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
@ -1144,7 +1144,7 @@
|
|||||||
settings => [
|
settings => [
|
||||||
{ key => "ROOT_PASSWORD", value => "weakpassword" },
|
{ key => "ROOT_PASSWORD", value => "weakpassword" },
|
||||||
{ key => "BOOTFROM", value => "c" },
|
{ key => "BOOTFROM", value => "c" },
|
||||||
{ key => "HDD_1", value => "disk_f23_desktop_x86_64.img" },
|
{ key => "HDD_1", value => "disk_f%CURRREL%_desktop_x86_64.img" },
|
||||||
{ key => "UPGRADE", value => "desktop" },
|
{ key => "UPGRADE", value => "desktop" },
|
||||||
{ key => "DESKTOP", value => "gnome" },
|
{ key => "DESKTOP", value => "gnome" },
|
||||||
],
|
],
|
||||||
@ -1154,7 +1154,7 @@
|
|||||||
settings => [
|
settings => [
|
||||||
{ key => "ROOT_PASSWORD", value => "weakpassword" },
|
{ key => "ROOT_PASSWORD", value => "weakpassword" },
|
||||||
{ key => "BOOTFROM", value => "c" },
|
{ key => "BOOTFROM", value => "c" },
|
||||||
{ key => "HDD_1", value => "disk_f22_minimal_x86_64.img" },
|
{ key => "HDD_1", value => "disk_f%PREVREL%_minimal_x86_64.img" },
|
||||||
{ key => "UPGRADE", value => "minimal" },
|
{ key => "UPGRADE", value => "minimal" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
@ -1163,7 +1163,7 @@
|
|||||||
settings => [
|
settings => [
|
||||||
{ key => "ROOT_PASSWORD", value => "weakpassword" },
|
{ key => "ROOT_PASSWORD", value => "weakpassword" },
|
||||||
{ key => "BOOTFROM", value => "c" },
|
{ key => "BOOTFROM", value => "c" },
|
||||||
{ key => "HDD_1", value => "disk_f22_desktop_x86_64.img" },
|
{ key => "HDD_1", value => "disk_f%PREVREL%_desktop_x86_64.img" },
|
||||||
{ key => "UPGRADE", value => "desktop" },
|
{ key => "UPGRADE", value => "desktop" },
|
||||||
{ key => "DESKTOP", value => "gnome" },
|
{ key => "DESKTOP", value => "gnome" },
|
||||||
],
|
],
|
||||||
@ -1173,7 +1173,7 @@
|
|||||||
settings => [
|
settings => [
|
||||||
{ key => "ROOT_PASSWORD", value => "weakpassword" },
|
{ key => "ROOT_PASSWORD", value => "weakpassword" },
|
||||||
{ key => "BOOTFROM", value => "c" },
|
{ key => "BOOTFROM", value => "c" },
|
||||||
{ key => "HDD_1", value => "disk_f23_desktop_i686.img" },
|
{ key => "HDD_1", value => "disk_f%CURRREL%_desktop_i686.img" },
|
||||||
{ key => "UPGRADE", value => "desktop" },
|
{ key => "UPGRADE", value => "desktop" },
|
||||||
{ key => "DESKTOP", value => "gnome" },
|
{ key => "DESKTOP", value => "gnome" },
|
||||||
],
|
],
|
||||||
@ -1183,7 +1183,7 @@
|
|||||||
settings => [
|
settings => [
|
||||||
{ key => "ROOT_PASSWORD", value => "weakpassword" },
|
{ key => "ROOT_PASSWORD", value => "weakpassword" },
|
||||||
{ key => "BOOTFROM", value => "c" },
|
{ key => "BOOTFROM", value => "c" },
|
||||||
{ key => "HDD_1", value => "disk_f22_desktop_i686.img" },
|
{ key => "HDD_1", value => "disk_f%PREVREL%_desktop_i686.img" },
|
||||||
{ key => "UPGRADE", value => "desktop" },
|
{ key => "UPGRADE", value => "desktop" },
|
||||||
{ key => "DESKTOP", value => "gnome" },
|
{ key => "DESKTOP", value => "gnome" },
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user