From 6b047cca1def4198216b5f344e3a45770141111c Mon Sep 17 00:00:00 2001 From: Steven Presti Date: Wed, 8 Nov 2023 15:33:10 -0500 Subject: [PATCH] vars/kola: drop `--basic-qemu-scenarios` The argument for --basic-qemu-scenarios has been removed. The tests invoked by it are now formal kola tests. See https://github.com/coreos/coreos-assembler/pull/3652 --- vars/kola.groovy | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/vars/kola.groovy b/vars/kola.groovy index fa35285..02b0a10 100644 --- a/vars/kola.groovy +++ b/vars/kola.groovy @@ -7,7 +7,6 @@ // arch: string -- the target architecture // cosaDir: string -- cosa working directory // parallel: integer -- number of tests to run in parallel (default: # CPUs) -// skipBasicScenarios boolean -- skip basic qemu scenarios // skipSecureBoot boolean -- skip secureboot tests // skipUpgrade: boolean -- skip running `cosa kola --upgrades` // build: string -- cosa build ID to target @@ -116,16 +115,6 @@ def call(params = [:]) { ids += id runKola(id, 'run', "--parallel=${parallel} ${args} ${extraArgs}") } else { - // basic run - if (!params['skipBasicScenarios']) { - id = marker == "" ? "kola-basic" : "kola-basic-${marker}" - ids += id - def skipSecureBootArg = "" - if (params['skipSecureBoot']) { - skipSecureBootArg = "--skip-secure-boot" - } - runKola(id, 'run', "--basic-qemu-scenarios ${skipSecureBootArg}") - } // normal run (without reprovision tests because those require a lot of memory) id = marker == "" ? "kola" : "kola-${marker}" ids += id