Force musl targets for cargo-binstall to avoid GLIBC mismatch
All checks were successful
CI / ci (pull_request) Successful in 1m47s
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:
parent
3788eafa88
commit
ff91960b7b
1 changed files with 1 additions and 1 deletions
|
|
@ -38,7 +38,7 @@ jobs:
|
|||
- name: Install cargo-make and cargo-audit
|
||||
run: |
|
||||
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
|
||||
|
||||
- name: Run CI checks
|
||||
|
|
|
|||
Loading…
Reference in a new issue