Skip to content

Commit

Permalink
Merge pull request #639 from opensafely-core/qemu-workaround
Browse files Browse the repository at this point in the history
Apply the QEMU workaround for colima
  • Loading branch information
ghickman authored Aug 25, 2023
2 parents 447440d + 251d214 commit 31934cf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,12 @@ jobs:

- name: install Docker/Colima on MacOS
if: ${{ matrix.os == 'macos-12' }}
run: brew install docker
run: |
# https://github.com/opensafely-core/job-server/issues/3429
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
- name: start Colima on MacOS
if: ${{ matrix.os == 'macos-12' }}
Expand Down

0 comments on commit 31934cf

Please sign in to comment.