Skip to content

Commit

Permalink
Install gcc dep for arm linux
Browse files Browse the repository at this point in the history
  • Loading branch information
alexroan committed Jun 5, 2024
1 parent 2f1d0c2 commit b967f1b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ jobs:
- name: Setup Cache
uses: Swatinem/rust-cache@v2

- name: Install Dependencies
if: matrix.target == 'aarch64-unknown-linux-gnu'
run: sudo apt-get update && sudo apt-get install -y gcc-aarch64-linux-gnu

- name: Build Binary
run: cargo build --verbose --locked --release --target ${{ matrix.target }}

Expand Down

0 comments on commit b967f1b

Please sign in to comment.