From 706178f9ee3458b7fbaf35195b56876812599a35 Mon Sep 17 00:00:00 2001 From: Michael O'Keefe Date: Fri, 22 Nov 2024 07:32:14 -0700 Subject: [PATCH] Add x86_64 for MacOS-14 --- .github/workflows/build_and_test.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_test.yaml b/.github/workflows/build_and_test.yaml index 4f74234c..1c23bc15 100644 --- a/.github/workflows/build_and_test.yaml +++ b/.github/workflows/build_and_test.yaml @@ -40,10 +40,12 @@ jobs: - name: set up rust uses: dtolnay/rust-toolchain@stable - - run: rustup target add aarch64-apple-darwin + - name: install rust target for MacOS 14 (Apple Silicon) + run: rustup target add aarch64-apple-darwin x86_64-apple-darwin if: matrix.os.base == 'macos' && matrix.os.version == '14' - - run: rustup target add x86_64-apple-darwin aarch64-apple-darwin + - name: install rust target for MacOS 13 (Intel Mac) + run: rustup target add x86_64-apple-darwin aarch64-apple-darwin if: matrix.os.base == 'macos' && matrix.os.version == '13' - name: run cargo tests