Skip to content

Commit 1e1376e

Browse files
committed
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.
1 parent 800d97b commit 1e1376e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
include:
12+
- target: aarch64-apple-darwin
13+
os: macos-14
14+
rust: nightly
1215
- target: aarch64-unknown-linux-gnu
1316
os: ubuntu-latest
1417
rust: nightly
@@ -81,6 +84,8 @@ jobs:
8184
os: windows-latest
8285
rust: nightly-x86_64-gnu
8386
steps:
87+
- name: Print runner information
88+
run: uname -a
8489
- uses: actions/checkout@v4
8590
with:
8691
submodules: true

0 commit comments

Comments
 (0)