Fix cross compilation preparation in CI pipeline
Some checks failed
CI / Build (aarch64-unknown-linux-gnu) (push) Failing after 3s
CI / Build (armv7-unknown-linux-gnueabihf) (push) Failing after 2s
CI / Build (x86_64-unknown-linux-gnu) (push) Failing after 2s
CI / Build (x86_64-unknown-linux-musl) (push) Failing after 3s
CI / Build (aarch64-pc-windows-msvc) (push) Has been cancelled
CI / Build (i686-pc-windows-msvc) (push) Has been cancelled
CI / Build (x86_64-pc-windows-msvc) (push) Has been cancelled
CI / Build (aarch64-apple-darwin) (push) Has been cancelled
CI / Build (x86_64-apple-darwin) (push) Has been cancelled
CI / MSRV (push) Has been cancelled

This commit is contained in:
Patrick Förster 2025-11-03 21:36:42 +01:00
parent 062a7a7985
commit 5a7c553eb3

View file

@ -57,7 +57,7 @@ jobs:
with:
targets: ${{ matrix.target }}
- name: Install cross-compilation dependencies
run: sudo apt-get install -y gcc-aarch64-linux-gnu gcc-arm-linux-gnueabihf
run: sudo apt-get update && sudo apt-get install -y gcc-aarch64-linux-gnu gcc-arm-linux-gnueabihf
if: ${{ matrix.os == 'ubuntu-22.04' }}
- name: Compile
run: cargo build --target ${{ matrix.target }} --all-features --release --locked