Install missing tooling to build for linux on arm

This commit is contained in:
Filip Tibell 2023-05-06 09:15:55 +02:00
parent 408f1a6d21
commit 0d1ab92b13
No known key found for this signature in database

View file

@ -122,6 +122,12 @@ jobs:
with:
targets: ${{ matrix.cargo-target }}
- name: Install tooling
if: matrix.runner-os == 'ubuntu-latest'
run: |
sudo apt-get update -y
sudo apt-get install -y musl-tools clang llvm
- name: Build binary
run: cargo build --package lune-cli --locked --release --all-features --target ${{ matrix.cargo-target }}
env: