Workaround for colima

This commit is contained in:
Alexis Métaireau 2024-11-26 12:00:25 +01:00
parent b84463a6ce
commit 6cf64c272a
No known key found for this signature in database
GPG key ID: C65C7A89A8FFC56E

View file

@ -25,6 +25,10 @@ jobs:
- name: Setup Docker and Colima (macOS only) - name: Setup Docker and Colima (macOS only)
if: runner.os == 'macOS' if: runner.os == 'macOS'
run: | run: |
# Workaround for https://github.com/actions/runner-images/issues/8104
brew remove --ignore-dependencies qemu
curl -o ./qemu.rb https://raw.githubusercontent.com/Homebrew/homebrew-core/dc0669eca9479e9eeb495397ba3a7480aaa45c2e/Formula/qemu.rb
brew install ./qemu.rb
brew install docker colima brew install docker colima
colima start colima start
# Wait for Docker daemon to be ready # Wait for Docker daemon to be ready