Skip to content

Commit

Permalink
jobs/kola-upgrade: bump memory for <=37 secureboot tests
Browse files Browse the repository at this point in the history
For <= 37 start_versions we'll hit an OOM in grub when running
SecureBoot tests. This is documented in
coreos/fedora-coreos-tracker#1456

Let's workaround the issue for now in our test.
  • Loading branch information
dustymabe committed Apr 4, 2023
1 parent e3be131 commit c608030
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions jobs/kola-upgrade.Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,12 @@ EOF
// https://github.com/coreos/fedora-coreos-tracker/issues/1452
k2 = kolaparams.clone()
k2.extraArgs += " --qemu-firmware=uefi-secure"
if ((start_version[0..1] as Integer) <= 37) {
// workaround a bug where grub would fail
// to allocate memory when start_version
// is <= 37.20230110.2.0
k2.extraArgs += " --qemu-memory=1536"
}
k2.marker = "uefi-secure"
parallelruns['Kola:UEFI-SECURE'] = { kola(k2) }
}
Expand Down

0 comments on commit c608030

Please sign in to comment.