ci
Some checks failed
Rust / build-size-gnu-unstable (pull_request) Has been cancelled
Rust / build-size-musl-unstable (pull_request) Has been cancelled
Rust / build-gnu-apt (pull_request) Has been cancelled
Rust / build-musl-beta (pull_request) Failing after 48s

This commit is contained in:
Vinzenz Schroeter 2025-05-04 01:33:57 +02:00
parent de74b1bd1a
commit 1766e0cb81

View file

@ -50,7 +50,7 @@ jobs:
- name: Install toolchain
run: sudo apt-get install -qy liblzma-dev gcc make pkgconf musl-dev musl-tools rustup
- name: install rust target
run: rustup toolchain install beta -t aarch64-unknown-linux-musl -c rust-src --no-self-update && rustup component add --toolchain nightly rust-src
run: rustup toolchain install beta -t aarch64-unknown-linux-musl --no-self-update && rustup component add --toolchain beta rust-src
- name: build example -- musl release
run: cd example && make clean && make TARGET=aarch64-unknown-linux-musl PROFILE=release MUSL=1 CARGO="rustup run beta cargo"