Skip to content

Commit

Permalink
add gcc arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
sslivkoff committed Jan 29, 2024
1 parent 4d479c4 commit 0e89d48
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit 0e89d48

Please sign in to comment.