Skip to content

Commit 8f83260

Browse files
committed
docs: add extra step for QEMU issue
1 parent 4f5bb9f commit 8f83260

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,29 @@ jobs:
4747
uses: crazy-max/ghaction-setup-docker@v3
4848
```
4949
50+
> [!IMPORTANT]
51+
> macOS runners hang with latest QEMU 9.1.0. You need to install QEMU 9.0.2 as
52+
> a workaround:
53+
> ```yaml
54+
> name: ci
55+
>
56+
> on:
57+
> push:
58+
>
59+
> jobs:
60+
> docker:
61+
> runs-on: macos-13
62+
> steps:
63+
> -
64+
> # https://github.com/crazy-max/ghaction-setup-docker/issues/108
65+
> name: Install QEMU 9.0.2
66+
> uses: docker/actions-toolkit/.github/actions/macos-setup-qemu@19ca9ade20f5da695f76a10988d6532058575f82
67+
> -
68+
> name: Set up Docker
69+
> uses: crazy-max/ghaction-setup-docker@v3
70+
> ```
71+
> More info: https://github.com/crazy-max/ghaction-setup-docker/issues/108.
72+
5073
### Daemon configuration
5174

5275
You can [configure the Docker daemon](https://docs.docker.com/engine/reference/commandline/dockerd/#daemon-configuration-file)

0 commit comments

Comments
 (0)