Skip to content

Commit

Permalink
test(ubuntu): ubuntu-latest now ubuntu-24, liblzma not installed by d…
Browse files Browse the repository at this point in the history
…efault
  • Loading branch information
mikehardy committed Oct 10, 2024
1 parent 7c57f2b commit 99b2782
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build-quick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,16 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Enable KVM group perms (Ubuntu)
- name: Ubuntu setup
# We get KVM set up on Ubuntu as we run the emulator there (only platform with nested virt)
# We also install some system software needed for the build on ubuntu
if: contains(matrix.os, 'ubuntu')
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm
sudo apt update
sudo apt -y install liblzma-dev
- name: Fetch submodules
run: git submodule update --init
Expand Down

0 comments on commit 99b2782

Please sign in to comment.