Skip to content

Commit e7762a8

Browse files
xbjfkdanielframpton
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>
1 parent bd74cd2 commit e7762a8

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
@@ -195,6 +195,18 @@ jobs:
195195
env:
196196
RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS: 64
197197
artifact-tag: offset-bits64
198+
- target: aarch64-unknown-linux-musl
199+
env:
200+
RUST_LIBC_UNSTABLE_MUSL_V1_2_3: 1
201+
- target: arm-unknown-linux-musleabihf
202+
env:
203+
RUST_LIBC_UNSTABLE_MUSL_V1_2_3: 1
204+
- target: i686-unknown-linux-musl
205+
env:
206+
RUST_LIBC_UNSTABLE_MUSL_V1_2_3: 1
207+
- target: loongarch64-unknown-linux-musl
208+
env:
209+
RUST_LIBC_UNSTABLE_MUSL_V1_2_3: 1
198210
# FIXME(ppc): SIGILL running tests, see
199211
# https://github.com/rust-lang/libc/pull/4254#issuecomment-2636288713
200212
# - 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)