mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
Add missing build tooling in CI for arm linux
This commit is contained in:
parent
6a28ae21d8
commit
505f06d973
1 changed files with 7 additions and 0 deletions
7
.github/workflows/ci.yaml
vendored
7
.github/workflows/ci.yaml
vendored
|
@ -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 \
|
||||
|
|
Loading…
Reference in a new issue