From 4efcbcfeecffcb0b760a0efc79b976a837e8695a Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Tue, 12 Aug 2025 11:12:45 -0700 Subject: [PATCH] CI: Switch to aarch64-apple-darwin This changes the macos CI job to use the aarch64-apple-darwin target instead of x86_64-apple-darwin. The Rust project has demoted x86_64 to tier 2 (https://rust-lang.github.io/rfcs/3841-demote-x86_64-apple-darwin.html), and I think we should be testing the aarch64-apple-darwin target instead since it is tier 1. macos-latest is currently macos-14 which is aarch64. The x86_64 tests have been running under emulation. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 941d8bdfb..f04ab34fe 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -63,7 +63,7 @@ jobs: - build: macos os: macos-latest rust: stable - target: x86_64-apple-darwin + target: aarch64-apple-darwin - build: win32 os: windows-latest rust: stable