Skip to content

Commit a3fcabb

Browse files
Updated gen_release_jobs() method to only test on ubuntu-20.04
This patch will be removed after testing and before review
1 parent 5b8c9b8 commit a3fcabb

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

vars/gen_jobs.groovy

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -576,16 +576,7 @@ def gen_release_jobs(label_prefix='', run_examples=true) {
576576
}
577577

578578
if (env.RUN_ALL_SH == "true") {
579-
for (component in common.available_all_sh_components['ubuntu-16.04']) {
580-
jobs = jobs + gen_all_sh_jobs('ubuntu-16.04', component, label_prefix)
581-
}
582-
for (component in (common.available_all_sh_components['ubuntu-18.04'] -
583-
common.available_all_sh_components['ubuntu-16.04'])) {
584-
jobs = jobs + gen_all_sh_jobs('ubuntu-18.04', component, label_prefix)
585-
}
586-
for (component in (common.available_all_sh_components['ubuntu-20.04'] -
587-
common.available_all_sh_components['ubuntu-18.04'] -
588-
common.available_all_sh_components['ubuntu-16.04'])) {
579+
for (component in (common.available_all_sh_components['ubuntu-20.04'])) {
589580
jobs = jobs + gen_all_sh_jobs('ubuntu-20.04', component, label_prefix)
590581
}
591582
}

0 commit comments

Comments
 (0)