Skip to content

Commit

Permalink
Downgrade to qemu-8.2.1
Browse files Browse the repository at this point in the history
Lima doesn't seem to work properly with the latest QEMU on GitHub runners.

This commit will build qemu 8.2.1 from source, which will take 10min or so.
It should be replaced by downloaded the bottle from ghcr.io.

Signed-off-by: Jan Dubois <jan.dubois@suse.com>
  • Loading branch information
jandubois committed Sep 20, 2024
1 parent b5b5600 commit 7a87c7f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,13 @@ jobs:
with:
template: https://raw.githubusercontent.com/lima-vm/lima/${{ matrix.oldver }}/examples/ubuntu-lts.yaml
- name: Install test dependencies
run: brew install qemu bash coreutils
run: |
brew install bash coreutils
brew uninstall --ignore-dependencies --force lima
# Install qemu 8.2.1. Unfortunately this mechanism builds from source.
brew tap-new lima/qemu
brew extract --version=8.2.1 qemu lima/qemu
brew install lima/qemu/qemu@8.2.1
- name: Test
uses: nick-invision/retry@v3
with:
Expand Down

0 comments on commit 7a87c7f

Please sign in to comment.