From 081e3a7dd0ecbf2c5eb654ec00e7e9a74a948764 Mon Sep 17 00:00:00 2001 From: Jonathan Pallant Date: Mon, 13 Jan 2025 17:13:47 +0000 Subject: [PATCH] Don't install "qemu" package - it's gone on Ubuntu 24.04 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4366515b..11ec3f35 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -131,7 +131,7 @@ jobs: - name: Install QEMU_TARGET run: rustup target add ${{ env.QEMU_TARGET }} - name: Install dependencies - run: sudo apt-get update && sudo apt-get install qemu qemu-system-arm + run: sudo apt-get update && sudo apt-get install qemu-system-arm - name: Run QEMU snapshot tests run: cargo xtask test-snapshot @@ -153,6 +153,6 @@ jobs: - name: Install QEMU_TARGET run: rustup target add ${{ env.QEMU_TARGET }} - name: Install dependencies - run: sudo apt-get update && sudo apt-get install qemu qemu-system-arm + run: sudo apt-get update && sudo apt-get install qemu-system-arm - name: Run backward compatibility test run: cargo xtask test-backcompat