Skip to content

Commit

Permalink
Add missing build tooling in CI for arm linux
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptibell committed Sep 11, 2023
1 parent 6a28ae2 commit 505f06d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,13 @@ jobs:
components: clippy
targets: ${{ matrix.cargo-target }}

- name: Install build tooling (aarch64-unknown-linux-gnu)
if: matrix.cargo-target == 'aarch64-unknown-linux-gnu'
run: |
sudo apt-get update -y
sudo apt-get install -y musl-tools clang llvm
sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
- name: Build
run: |
cargo build \
Expand Down

0 comments on commit 505f06d

Please sign in to comment.