Skip to content

Commit

Permalink
fixup! install qemu-system-arm without recommends to avoid conflict w…
Browse files Browse the repository at this point in the history
…ith qemu-user-static (via qemu-utils)
  • Loading branch information
mvo5 committed Nov 11, 2024
1 parent bb153ed commit 181f35e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ 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 pylint libosinfo-bin
- name: Diskspace (before)
run: |
df -h
Expand All @@ -96,8 +96,10 @@ 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
# now remove ppa again, the metadata confuses apt
sudo apt-add-repository --remove -y ppa:mvo/qemu
sudo apt install -y qemu-system-arm qemu-system-x86 qemu-efi-aarch64
- name: Install python test deps
run: |
# make sure test deps are available for root
Expand Down

0 comments on commit 181f35e

Please sign in to comment.