Compare commits

..

1 commit

Author SHA1 Message Date
Vinzenz Schroeter 6b14a85cfb split jobs?
Some checks failed
Rust / build-size-unstable (pull_request) Has been cancelled
Rust / build-gnu-apt (pull_request) Has been cancelled
Rust / build-musl-stable (pull_request) Failing after 23s
2025-05-03 23:17:28 +02:00

View file

@ -66,7 +66,7 @@ jobs:
- name: Install toolchain
run: sudo apt-get install -qy liblzma-dev gcc make pkgconf musl-dev musl-tools rustup
- name: install rust targets
run: rustup toolchain install nightly -t aarch64-unknown-linux-musl -t aarch64-unknown-linux-gnu -c rust-src --no-self-update
run: rustup toolchain install nightly -t aarch64-unknown-linux-musl -t aarch64-unknown-linux-gnu --no-self-update
- name: build example -- glibc size-optimized
run: cd example && make clean && make TARGET=aarch64-unknown-linux-gnu PROFILE=size-optimized CARGO="rustup run nightly cargo"