From bab4a56b6021b9ff04663545835ecc27f884935f Mon Sep 17 00:00:00 2001 From: Nathan Glenn Date: Wed, 1 May 2024 14:16:25 -0500 Subject: [PATCH] Explicitly specify Mac OS version in CI macos-latest now builds on an M1, so we downgrade to ensure creation of x86_64 binaries for Mac. Fixes #449. --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d632a10969..34abe93ba3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,11 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-latest] + os: [ + ubuntu-latest, + # latest available X86_64 target + macos-12, + ] steps: - name: Checkout uses: actions/checkout@v1