Force musl targets for cargo-binstall to avoid GLIBC mismatch
All checks were successful
CI / ci (pull_request) Successful in 1m47s

The glibc-linked prebuilt cargo-make binary requires GLIBC 2.39,
newer than what's on the node:20-bookworm image. Musl binaries
are statically linked and avoid the mismatch.
This commit is contained in:
Austin Schaefer 2026-07-29 16:24:50 +02:00
parent 3788eafa88
commit ff91960b7b

View file

@ -38,7 +38,7 @@ jobs:
- name: Install cargo-make and cargo-audit - name: Install cargo-make and cargo-audit
run: | run: |
for crate in cargo-make cargo-audit; do for crate in cargo-make cargo-audit; do
command -v "$crate" >/dev/null 2>&1 || cargo binstall -y "$crate" command -v "$crate" >/dev/null 2>&1 || cargo binstall -y --targets x86_64-unknown-linux-musl "$crate"
done done
- name: Run CI checks - name: Run CI checks