Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions vars/kolaTestIso.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ def call(params = [:]) {
def extraArgs = params.get('extraArgs', "");
def marker = params.get('marker', "");

// Check if kola has testiso command, skip if not available
if (shwrapRc("cosa kola help | grep -q testiso") != 0) {
echo "Skipping kola testiso: command not available in this version of kola"
return
}

if (params['skipUEFI']) {
extraArgs += " --denylist-test *.uefi*"
Expand Down