From c13e6c720d17a336021a8bd28c5ff5818e61deb6 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Thu, 2 Nov 2023 11:01:23 +0000 Subject: [PATCH] mkosi: explicitly disable KVM in GHA runs mkosi detects whether /dev/kvm is available and uses it if it is. But some GHA hosts have it, but it's broken and not supported, so we need to explicitly disable it. --- .github/workflows/mkosi.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/mkosi.yml b/.github/workflows/mkosi.yml index 31fd7fe1c6a..7b676ddbfbd 100644 --- a/.github/workflows/mkosi.yml +++ b/.github/workflows/mkosi.yml @@ -99,6 +99,8 @@ jobs: # Root device can take a long time to appear, so let's bump the timeout. systemd.default_device_timeout_sec=180 QemuVsock=yes + # Sometimes we run on a host with /dev/kvm, but it is broken, so explicitly disable it + QemuKvm=no Ephemeral=yes EOF -- 2.47.3