From aad3a5e42e2e98af7bfb6bbda0e3d1b9c0be7497 Mon Sep 17 00:00:00 2001 From: Ariel Volovik <16262535+volovikariel@users.noreply.github.com> Date: Wed, 26 Feb 2025 17:27:22 -0500 Subject: [PATCH] Remove QEMU dummy package installation from Linux-pack.yml (#3851) The QEMU package is now a dummy package. Installing qemu-user-static should be sufficient. See https://packages.debian.org/buster/qemu for official mention of it being a dummy package. --- .github/workflows/Linux-pack.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Linux-pack.yml b/.github/workflows/Linux-pack.yml index d61c5cd6..09408dff 100644 --- a/.github/workflows/Linux-pack.yml +++ b/.github/workflows/Linux-pack.yml @@ -142,7 +142,7 @@ jobs: esac if [ -n "${QEMU_ARCH}" ]; then sudo apt-get -y -qq update - sudo apt-get -y install qemu binfmt-support qemu-user-static + sudo apt-get -y install binfmt-support qemu-user-static docker run --rm --privileged multiarch/qemu-user-static --reset --persistent yes --credential yes cat /proc/sys/fs/binfmt_misc/qemu-${QEMU_ARCH} fi