From ec1ddeb069f59727ecfcbeeb34ca3e6d8a481d49 Mon Sep 17 00:00:00 2001 From: Luben Karavelov Date: Wed, 3 Apr 2024 08:30:44 +0100 Subject: [PATCH] Use the M1 MacOS runner to compile the aarch64 binary --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 486cbb2..24a3071 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,8 +47,8 @@ jobs: fail-fast: false matrix: include: [ - { os: macos-11.0, host_arch: x86_64, macos_target: x86_64-apple-macos10.12, target_arch: x86_64 }, - { os: macos-11.0, host_arch: x86_64, macos_target: arm64-apple-macos11, target_arch: aarch64 } + { os: macos-latest, host_arch: x86_64, macos_target: x86_64-apple-macos10.12, target_arch: x86_64 }, + { os: macos-latest, host_arch: aarch64, macos_target: arm64-apple-macos11, target_arch: aarch64 } ] runs-on: ${{ matrix.os }} steps: