CI needs musl
Some checks failed
Rust / build (pull_request) Failing after 4m47s

This commit is contained in:
Vinzenz Schroeter 2025-05-03 19:59:13 +02:00
parent 826280b0df
commit ced10ac1df

View file

@ -22,12 +22,8 @@ jobs:
- name: Update repos - name: Update repos
run: sudo apt-get update -qq run: sudo apt-get update -qq
- name: Install rust toolchain - name: Install toolchain
run: sudo apt-get install -qy cargo rust-clippy run: sudo apt-get install -qy cargo rust-clippy liblzma-dev gcc make pkgconf
- name: install lzma
run: sudo apt-get install -qy liblzma-dev
- name: install gcc
run: sudo apt-get install -qy gcc make
- name: Run Clippy - name: Run Clippy
run: cargo clippy run: cargo clippy
@ -44,6 +40,9 @@ jobs:
run: cd example && make clean && make TARGET=aarch64-unknown-linux-gnu PROFILE=release run: cd example && make clean && make TARGET=aarch64-unknown-linux-gnu PROFILE=release
- name: build example -- glibc debug - name: build example -- glibc debug
run: cd example && make clean && make TARGET=aarch64-unknown-linux-gnu PROFILE=debug run: cd example && make clean && make TARGET=aarch64-unknown-linux-gnu PROFILE=debug
- name: install musl dependencies
run: sudo apt-get install -y musl-dev musl-tools
- name: build example -- musl release - name: build example -- musl release
run: cd example && make clean && make TARGET=aarch64-unknown-linux-musl PROFILE=release MUSL=1 run: cd example && make clean && make TARGET=aarch64-unknown-linux-musl PROFILE=release MUSL=1
- name: build example -- musl debug - name: build example -- musl debug