File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 98
98
artifact-tag : offset-bits64
99
99
env :
100
100
RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS : 64
101
+ - target : i686-unknown-linux-gnu
102
+ docker : true
103
+ os : ubuntu-24.04
104
+ artifact-tag : time-bits64
105
+ env :
106
+ RUST_LIBC_UNSTABLE_GNU_TIME_BITS : 64
101
107
- target : x86_64-unknown-linux-gnu
102
108
docker : true
103
109
os : ubuntu-24.04
@@ -195,6 +201,10 @@ jobs:
195
201
env :
196
202
RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS : 64
197
203
artifact-tag : offset-bits64
204
+ - target : arm-unknown-linux-gnueabihf
205
+ env :
206
+ RUST_LIBC_UNSTABLE_GNU_TIME_BITS : 64
207
+ artifact-tag : time-bits64
198
208
- target : aarch64-unknown-linux-musl
199
209
env :
200
210
RUST_LIBC_UNSTABLE_MUSL_V1_2_3 : 1
@@ -214,6 +224,10 @@ jobs:
214
224
# env:
215
225
# RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS: 64
216
226
# artifact-tag: offset-bits64
227
+ # - target: powerpc-unknown-linux-gnu
228
+ # env:
229
+ # RUST_LIBC_UNSTABLE_GNU_TIME_BITS: 64
230
+ # artifact-tag: time-bits64
217
231
timeout-minutes : 25
218
232
env :
219
233
TARGET : ${{ matrix.target }}
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ run() {
44
44
--env LIBC_CI \
45
45
--env LIBC_CI_ZBUILD_STD \
46
46
--env RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS \
47
+ --env RUST_LIBC_UNSTABLE_GNU_TIME_BITS \
47
48
--env CARGO_HOME=/cargo \
48
49
--env CARGO_TARGET_DIR=/checkout/target \
49
50
--volume " $CARGO_HOME " :/cargo \
Original file line number Diff line number Diff line change @@ -75,9 +75,12 @@ test_target() {
75
75
# Test with the equivalent of __USE_TIME_BITS64
76
76
RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64=1 $cmd
77
77
case " $target " in
78
- # Test with the equivalent of __FILE_OFFSET_BITS=64
79
78
arm* -gnu* |i* 86* -gnu|powerpc-* -gnu* |mips* -gnu|sparc-* -gnu|thumb-* gnu* )
80
- RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS=64 $cmd ;;
79
+ # Test with the equivalent of _FILE_OFFSET_BITS=64
80
+ RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS=64 $cmd
81
+ # Test with the equivalent of _TIME_BITS=64
82
+ RUST_LIBC_UNSTABLE_GNU_TIME_BITS=64 $cmd
83
+ ;;
81
84
esac
82
85
fi
83
86
You can’t perform that action at this time.
0 commit comments