File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,8 @@ run() {
45
45
--env LIBC_CI_ZBUILD_STD \
46
46
--env RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS \
47
47
--env RUST_LIBC_UNSTABLE_GNU_TIME_BITS \
48
+ --env RUST_LIBC_UNSTABLE_MUSL_V1_2_3 \
49
+ --env RUST_LIBC_UNSTABLE_MUSL_TIME64 \
48
50
--env CARGO_HOME=/cargo \
49
51
--env CARGO_TARGET_DIR=/checkout/target \
50
52
--volume " $CARGO_HOME " :/cargo \
Original file line number Diff line number Diff line change @@ -83,6 +83,15 @@ test_target() {
83
83
# Test with the equivalent of _TIME_BITS=64
84
84
RUST_LIBC_UNSTABLE_GNU_TIME_BITS=64 $cmd
85
85
;;
86
+ arm* -* -musl* |i* 86-* -musl|powerpc-* -musl* |mips-* -musl|mipsel-* -musl)
87
+ # Test with new musl changes and the equivalent of _REDIR_TIME64
88
+ RUST_LIBC_UNSTABLE_MUSL_V1_2_3=1 \
89
+ RUST_LIBC_UNSTABLE_MUSL_TIME64=1 $cmd
90
+ ;;
91
+ * musl* )
92
+ # Test with the new musl changes.
93
+ RUST_LIBC_UNSTABLE_MUSL_V1_2_3=1 $cmd
94
+ ;;
86
95
esac
87
96
fi
88
97
You can’t perform that action at this time.
0 commit comments