Skip to content

Commit 2435902

Browse files
committed
fix (cd): added an compiler installation for arm64 platforms
Signed-off-by: rafaeljohn9 <rafaeljohb@gmail.com>
1 parent 644b4bd commit 2435902

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/build-binaries.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ jobs:
3636
uses: dtolnay/rust-toolchain@stable
3737
with:
3838
targets: ${{ matrix.build.TARGET }}
39+
40+
# HANDLE MISSING COMPILER FOR ARM64
41+
- name: Install ARM64 cross-compiler (for aarch64 Linux)
42+
if: runner.os == 'Linux' && contains(matrix.build.TARGET, 'aarch64-unknown-linux-gnu')
43+
run: sudo apt-get update && sudo apt-get install -y gcc-aarch64-linux-gnu
3944

4045
# === HANDLE WHEEL TARGETS (maturin-controlled build) ===
4146
- name: Setup for maturin build (wheel targets)

0 commit comments

Comments
 (0)