Skip to content

Commit

Permalink
Run brew update and brew upgrade
Browse files Browse the repository at this point in the history
The brew setup on the Github runners seems to be lagging behind.
E.g. it just installed qemu-6.0.0 when qemu-6.1.0 was already
available.

Signed-off-by: Jan Dubois <[email protected]>
  • Loading branch information
jandubois committed Aug 27, 2021
1 parent 5d8f7a8 commit b7c37fd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ jobs:
# QEMU: required by Lima itself
# bash: required by test-example.sh (OS version of bash is too old)
# coreutils: required by test-example.sh for the "timeout" command
run: brew install qemu bash coreutils
run: |
brew update
brew install qemu bash coreutils
brew upgrade
- name: Create lima-and-qemu tarball
run: |
./src/lima/hack/lima-and-qemu.pl
Expand Down

0 comments on commit b7c37fd

Please sign in to comment.