From b80cebfd4a296f5f0fc1d6b23c7d117990770d95 Mon Sep 17 00:00:00 2001 From: Lex Christopherson Date: Tue, 24 Mar 2026 16:18:19 -0600 Subject: [PATCH] fix(ci): restore Rust target triple and separate cross-compilation setup Blacksmith migration (#2414) incorrectly rewrote the Rust target triple aarch64-unknown-linux-gnu to the runner label blacksmith-4vcpu-ubuntu-2404-arm. Restore the correct Rust target and split cross-compilation target addition into an explicit rustup command. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/build-native.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-native.yml b/.github/workflows/build-native.yml index 47378b86e..420cf872f 100644 --- a/.github/workflows/build-native.yml +++ b/.github/workflows/build-native.yml @@ -31,7 +31,7 @@ jobs: target: x86_64-unknown-linux-gnu platform: linux-x64-gnu - os: ubuntu-latest - target: blacksmith-4vcpu-ubuntu-2404-arm + target: aarch64-unknown-linux-gnu platform: linux-arm64-gnu cross: true - os: windows-latest