From 34fc23d02402bcee01787a69a921aa6d28b13cce Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Mon, 15 Apr 2024 23:40:58 +0200 Subject: [PATCH] Add native CI target for M1 macs --- .github/workflows/ci.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2444c37..b60e128 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -64,9 +64,13 @@ jobs: cargo-target: x86_64-unknown-linux-gnu - name: macOS x86_64 - runner-os: macos-latest + runner-os: macos-13 cargo-target: x86_64-apple-darwin - timeout-minutes: 10 + + - name: macOS aarch64 + runner-os: macos-14 + cargo-target: aarch64-apple-darwin + name: CI - ${{ matrix.name }} runs-on: ${{ matrix.runner-os }} steps: