Skip to content

Commit c469a85

Browse files
xbjfktgross35
authored andcommitted
ci: install-musl: upgrade to 1.2.3
This will be chosen based on the RUST_LIBC_UNSTABLE_MUSL_V1_2_3 variable. Co-authored-by: Daniel Frampton <Daniel.Frampton@microsoft.com> (backport <rust-lang#4443>) (cherry picked from commit e7762a8)
1 parent f1e459f commit c469a85

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,18 @@ jobs:
196196
env:
197197
RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS: 64
198198
artifact-tag: offset-bits64
199+
- target: aarch64-unknown-linux-musl
200+
env:
201+
RUST_LIBC_UNSTABLE_MUSL_V1_2_3: 1
202+
- target: arm-unknown-linux-musleabihf
203+
env:
204+
RUST_LIBC_UNSTABLE_MUSL_V1_2_3: 1
205+
- target: i686-unknown-linux-musl
206+
env:
207+
RUST_LIBC_UNSTABLE_MUSL_V1_2_3: 1
208+
- target: loongarch64-unknown-linux-musl
209+
env:
210+
RUST_LIBC_UNSTABLE_MUSL_V1_2_3: 1
199211
# FIXME(ppc): SIGILL running tests, see
200212
# https://github.com/rust-lang/libc/pull/4254#issuecomment-2636288713
201213
# - target: powerpc-unknown-linux-gnu

ci/install-musl.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ case ${1} in
1010
musl_version=1.2.5
1111
;;
1212
*)
13-
musl_version=1.1.24
13+
[ -n "${RUST_LIBC_UNSTABLE_MUSL_V1_2_3:-}" ] && musl_version=1.2.3 || musl_version=1.1.24
1414
;;
1515
esac
1616

0 commit comments

Comments
 (0)