action #110461
open[MinimalVM] Unify all jeos schedule into main_jeos.pm
0%
Description
Currently, different JeOS tests are using different ways of scheduling tests.
SLES:
- jeos-main -> schedule/jeos/sle/jeos-main.yaml
- jeos-extratest -> schedule/jeos/sle/jeos-extratest.yaml
- jeos-fs_stress -> schedule/jeos/sle/jeos-fs_stress.yaml
- jeos-fips -> schedule/jeos/sle/fips.yaml
- jeos-ltp -> schedule/jeos/sle/jeos-ltp.yaml
- jeos-base+sdk+desktop -> schedule/jeos/sle/jeos-base%2Bsdk%2Bdesktop.yaml jeos-apparmor -> lib/main_common.pm openstack -> lib/main_common.pm jeos-containers -> lib/main_containers.pm
SLES RPi: https://github.com/os-autoinst/os-autoinst-distri-opensuse/tree/master/schedule/jeos/sle/rpi
for openSUSE, everything is handled via main_common.pm
https://github.com/os-autoinst/os-autoinst-distri-opensuse/blob/master/products/opensuse/main.pm#L261
if (is_jeos) {
load_jeos_tests();
}
which loads common tests from main_common.pm for all the tests, and then we have specific tests for for the other jobs, for instance kernel or containers:
if (is_kernel_test()) {
load_kernel_tests();
}
elsif (is_container_test) {
load_container_tests();
}
We have everything scattered over different files. This can lead to gaps in coverage from OSD and O3.
The best way to unify all the schedules would be to have a dedicated centralized schedule, similar to main_publiccloud.pm
or main_containers.pm
will all the needed conditions for the different distris/versions/backends etc.
What we would need to do in the products/sle|opensuse/main.pm is:
if (is_jeos) {
load_jeos_tests();
return;
}
Updated by mloviska almost 2 years ago
- Related to action #108806: Create lib/main_jeos.pm for JeOS schedule added
Updated by jlausuch almost 2 years ago
- Status changed from Workable to In Progress
- Assignee set to jlausuch
Will work on this together with https://progress.opensuse.org/issues/108806
Updated by jlausuch over 1 year ago
- Status changed from In Progress to Workable
- Assignee deleted (
jlausuch)
Updated by ph03nix about 1 year ago
- Related to deleted (action #108806: Create lib/main_jeos.pm for JeOS schedule)
Updated by ph03nix about 1 year ago
- Has duplicate action #108806: Create lib/main_jeos.pm for JeOS schedule added
Updated by ph03nix about 1 year ago
- Blocks action #107449: [MinimalVM] Enable jeos-extratest and jeos-main for cloud tests added
Updated by ilausuch about 1 year ago
- Status changed from Workable to In Progress
- Assignee set to ilausuch
Updated by ilausuch about 1 year ago
- Status changed from In Progress to Workable