From 2ff4ab27ee03000ba37559204746969b0f34ea90 Mon Sep 17 00:00:00 2001 From: Alex Hancock Date: Mon, 23 Mar 2026 15:22:32 -0400 Subject: [PATCH] chore(acp): build native packages on latest mac (#8075) --- .github/workflows/build-native-packages.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-native-packages.yml b/.github/workflows/build-native-packages.yml index 34d02bf33c..04eca73cf8 100644 --- a/.github/workflows/build-native-packages.yml +++ b/.github/workflows/build-native-packages.yml @@ -29,10 +29,10 @@ jobs: matrix: include: - platform: darwin-arm64 - os: macos-14 + os: macos-latest target: aarch64-apple-darwin - platform: darwin-x64 - os: macos-13 + os: macos-latest target: x86_64-apple-darwin - platform: linux-arm64 os: ubuntu-24.04-arm @@ -53,6 +53,10 @@ jobs: with: targets: ${{ matrix.target }} + - name: Add Intel target for cross-compilation (macOS ARM64 → x86_64) + if: matrix.platform == 'darwin-x64' + run: rustup target add x86_64-apple-darwin + - name: Install cross-compilation tools (Linux ARM64) if: matrix.platform == 'linux-arm64' run: |