Skip to content

Commit

Permalink
Add x86_64 for MacOS-14
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael O'Keefe authored and Michael O'Keefe committed Nov 22, 2024
1 parent 5b274c2 commit 706178f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 706178f

Please sign in to comment.