Add CI testing for AArch64 Darwin

The Apple ARM silicon has been around for a while now and hopefully will
become Rust Tier 1 at some point. Add it to CI since it is distinct
enough from aarch64-linux and x86_86-darwin that there may be
differences.
This commit is contained in:
Trevor Gross 2024-04-16 03:04:37 -04:00 committed by Trevor Gross
parent 47f2241db9
commit d5bc2de9ec

View file

@ -9,6 +9,9 @@ jobs:
fail-fast: false
matrix:
include:
- target: aarch64-apple-darwin
os: macos-14
rust: nightly
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
rust: nightly
@ -81,6 +84,8 @@ jobs:
os: windows-latest
rust: nightly-x86_64-gnu
steps:
- name: Print runner information
run: uname -a
- uses: actions/checkout@v4
with:
submodules: true