Skip to content

Commit

Permalink
CI: Install less packages for QEMU
Browse files Browse the repository at this point in the history
  • Loading branch information
YtvwlD committed Jun 14, 2024
1 parent 37a1b06 commit 9d8fb67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
cache-all-crates: true
cache-on-failure: true
- name: Install qemu
run: sudo apt-get update && sudo apt-get install -y qemu-system-x86
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends qemu-system-x86
- name: Enable KVM group perms
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
cache-all-crates: true
cache-on-failure: true
- name: Install qemu
run: sudo apt-get update && sudo apt-get install -y qemu-system-x86
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends qemu-system-x86
- name: Enable KVM group perms
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
Expand Down

0 comments on commit 9d8fb67

Please sign in to comment.