From 296eb55ac98b312b9fdf083eefc2015ec6e03b85 Mon Sep 17 00:00:00 2001 From: Michael Armijo Date: Thu, 3 Aug 2023 16:20:14 -0400 Subject: [PATCH] Revert "utils: snooze kola-openstack for all streams" The kola-openstack tests are passing again. Remove the workaround, but We still need to implement some additional clean up during garbage collection: https://github.com/coreos/coreos-assembler/issues/3550 This reverts commit 18252d4ce7e5dbbc5f1f5ce426cfe61ad7d5c793. --- utils.groovy | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/utils.groovy b/utils.groovy index 23b289746..1eb69c983 100644 --- a/utils.groovy +++ b/utils.groovy @@ -498,18 +498,12 @@ def run_cloud_tests(pipecfg, stream, version, cosa, basearch, commit) { testruns['Kola:GCP'] = { build job: 'kola-gcp', wait: false, parameters: params } } - // snooze kola-openstack tests on all streams for the month of July. - // See: https://github.com/coreos/fedora-coreos-pipeline/issues/889 - def now = Calendar.instance - def month = now.get(Calendar.MONTH) - if (month != Calendar.JULY) { - // Kick off the Kola OpenStack job if we have an artifact, credentials, and testing is enabled. - if (shwrapCapture("cosa meta --build=${version} --get-value images.openstack") != "None" && - cloud_testing_enabled_for_arch(pipecfg, 'openstack', basearch) && - utils.credentialsExist([file(variable: 'OPENSTACK_KOLA_TESTS_CONFIG', - credentialsId: 'openstack-kola-tests-config')])) { - testruns['Kola:OpenStack'] = { build job: 'kola-openstack', wait: false, parameters: params } - } + // Kick off the Kola OpenStack job if we have an artifact, credentials, and testing is enabled. + if (shwrapCapture("cosa meta --build=${version} --get-value images.openstack") != "None" && + cloud_testing_enabled_for_arch(pipecfg, 'openstack', basearch) && + utils.credentialsExist([file(variable: 'OPENSTACK_KOLA_TESTS_CONFIG', + credentialsId: 'openstack-kola-tests-config')])) { + testruns['Kola:OpenStack'] = { build job: 'kola-openstack', wait: false, parameters: params } } // Now run the kickoff jobs in parallel. These take little time