diff options
author | Luca Boccassi <bluca@debian.org> | 2024-06-17 18:40:28 +0200 |
---|---|---|
committer | Luca Boccassi <bluca@debian.org> | 2024-06-17 18:40:48 +0200 |
commit | bdd0b45bfd7190bb8eb50c71ff6f50a80d6e6e52 (patch) | |
tree | 715c008eea54d9bbbf443b681f706c44b23c75c6 /.github/workflows/mkosi.yml | |
parent | test: use 'auto' instead of 'uefi' for automated fallback (diff) | |
download | systemd-bdd0b45bfd7190bb8eb50c71ff6f50a80d6e6e52.tar.xz systemd-bdd0b45bfd7190bb8eb50c71ff6f50a80d6e6e52.zip |
CI: disable secure boot in mkosi GHA runs
Booting a guest with secure boot is broken in Azure due to a hypervisor
bug. Disable it for now. Given there's no option, need to edit
the configuration on the fly.
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/mkosi.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/mkosi.yml b/.github/workflows/mkosi.yml index 425d737b62..62efd367cb 100644 --- a/.github/workflows/mkosi.yml +++ b/.github/workflows/mkosi.yml @@ -117,6 +117,8 @@ jobs: - name: Configure run: | + # XXX: drop after the HyperV bug that breaks secure boot KVM guests is solved + sed -i "s/'firmware'\s*:\s*'auto'/'firmware' : 'uefi'/g" test/*/meson.build tee mkosi.local.conf <<EOF [Distribution] Distribution=${{ matrix.distro }} |