Skip to content

Commit

Permalink
Merge pull request #922 from knurling-rs/update-ci-for-qemu
Browse files Browse the repository at this point in the history
Don't install "qemu" package - it's gone on Ubuntu 24.04
  • Loading branch information
jonathanpallant authored Jan 20, 2025
2 parents 7c30b73 + 081e3a7 commit f1fe0a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

0 comments on commit f1fe0a0

Please sign in to comment.