From a370e4bfe4f05aabb1f69ab8983016b798e9d3b3 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Mon, 11 Nov 2024 12:25:59 +0100 Subject: [PATCH] fixup! install qemu-system-arm without recommends to avoid conflict with qemu-user-static (via qemu-utils) --- .github/workflows/tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 09ed6f9b4..1b0757d18 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -79,7 +79,9 @@ jobs: - name: Install test dependencies run: | sudo apt update - sudo apt install -y python3-pytest python3-paramiko python3-boto3 flake8 qemu-system-x86 qemu-efi-aarch64 qemu-system-arm pylint libosinfo-bin + sudo apt install -y python3-pytest python3-paramiko python3-boto3 flake8 qemu-system-x86 qemu-efi-aarch64 pylint libosinfo-bin + # no recommends or installing qemu-user-static below fails + sudo apt install -y --no-install-recommends qemu-system-arm - name: Diskspace (before) run: | df -h @@ -96,8 +98,7 @@ jobs: # XXX: remove once ubuntu ships qemu-9.1 sudo apt install -y software-properties-common sudo apt-add-repository -y ppa:mvo/qemu - sudo apt update - sudo apt install -y qemu-user-static + sudo apt install --no-install-recommends -y qemu-user-static - name: Install python test deps run: | # make sure test deps are available for root