From 8f832606d8243b3efa938dfc2cc0ed6c068da72f Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Fri, 4 Oct 2024 15:03:51 +0200 Subject: [PATCH] docs: add extra step for QEMU issue --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index 273ba37..b981f23 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,29 @@ jobs: uses: crazy-max/ghaction-setup-docker@v3 ``` +> [!IMPORTANT] +> macOS runners hang with latest QEMU 9.1.0. You need to install QEMU 9.0.2 as +> a workaround: +> ```yaml +> name: ci +> +> on: +> push: +> +> jobs: +> docker: +> runs-on: macos-13 +> steps: +> - +> # https://github.com/crazy-max/ghaction-setup-docker/issues/108 +> name: Install QEMU 9.0.2 +> uses: docker/actions-toolkit/.github/actions/macos-setup-qemu@19ca9ade20f5da695f76a10988d6532058575f82 +> - +> name: Set up Docker +> uses: crazy-max/ghaction-setup-docker@v3 +> ``` +> More info: https://github.com/crazy-max/ghaction-setup-docker/issues/108. + ### Daemon configuration You can [configure the Docker daemon](https://docs.docker.com/engine/reference/commandline/dockerd/#daemon-configuration-file)