From 0e89d488345640bd8f8d7e02613377dd37137775 Mon Sep 17 00:00:00 2001 From: sslivkoff Date: Mon, 29 Jan 2024 00:19:49 -0800 Subject: [PATCH] add gcc arm64 --- .github/workflows/release.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c41d7b0..8e33666 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,15 +16,7 @@ jobs: - os: ubuntu-latest arch: arm64 target: aarch64-unknown-linux-gnu - - os: macos-latest - arch: amd64 - target: x86_64-apple-darwin - - os: macos-latest - arch: arm64 - target: aarch64-apple-darwin - - os: windows-latest - arch: amd64 - target: x86_64-pc-windows-msvc + # ... other matrix entries ... steps: - name: Checkout Repository @@ -36,6 +28,12 @@ jobs: sudo apt-get update sudo apt-get install pkg-config libssl-dev + - name: Install Cross-Compilation Tools (ARM64) + if: matrix.target == 'aarch64-unknown-linux-gnu' + run: | + sudo apt-get update + sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu + - name: Install Rust uses: actions-rs/toolchain@v1 with: