From 2e51f0ad490b8256c2dffe412b91e96fc7a74231 Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Sat, 7 Jun 2025 21:51:57 -0400 Subject: [PATCH] Use douglascamata/setup-docker-macos-action for macOS Docker setup This action properly installs and starts Docker daemon on macOS runners, which is required for our integration tests. --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a59fa4..7affe73 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,10 +54,9 @@ jobs: # Create config file with full path to rust-lld Add-Content -Path "$env:USERPROFILE\.cargo\config.toml" -Value "[target.x86_64-unknown-linux-musl]" Add-Content -Path "$env:USERPROFILE\.cargo\config.toml" -Value "linker = `"$rust_lld`"" - - name: Set up Docker for all platforms - uses: docker/setup-buildx-action@v3 - with: - install: true + - name: Set up Docker (macOS) + if: matrix.os == 'macos-latest' + uses: douglascamata/setup-docker-macos-action@v1-alpha - name: Cache cargo registry uses: actions/cache@v4 with: