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 99
99
artifact-tag : offset-bits64
100
100
env :
101
101
RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS : 64
102
+ - target : i686-unknown-linux-gnu
103
+ docker : true
104
+ os : ubuntu-24.04
105
+ artifact-tag : time-bits64
106
+ env :
107
+ RUST_LIBC_UNSTABLE_GNU_TIME_BITS : 64
102
108
- target : x86_64-unknown-linux-gnu
103
109
docker : true
104
110
os : ubuntu-24.04
@@ -196,6 +202,10 @@ jobs:
196
202
env :
197
203
RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS : 64
198
204
artifact-tag : offset-bits64
205
+ - target : arm-unknown-linux-gnueabihf
206
+ env :
207
+ RUST_LIBC_UNSTABLE_GNU_TIME_BITS : 64
208
+ artifact-tag : time-bits64
199
209
- target : aarch64-unknown-linux-musl
200
210
env :
201
211
RUST_LIBC_UNSTABLE_MUSL_V1_2_3 : 1
@@ -215,6 +225,10 @@ jobs:
215
225
# env:
216
226
# RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS: 64
217
227
# artifact-tag: offset-bits64
228
+ # - target: powerpc-unknown-linux-gnu
229
+ # env:
230
+ # RUST_LIBC_UNSTABLE_GNU_TIME_BITS: 64
231
+ # artifact-tag: time-bits64
218
232
timeout-minutes : 25
219
233
env :
220
234
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 @@ -76,9 +76,12 @@ test_target() {
76
76
# Test with the equivalent of __USE_TIME_BITS64
77
77
RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64=1 $cmd
78
78
case " $target " in
79
- # Test with the equivalent of __FILE_OFFSET_BITS=64
80
79
arm* -gnu* |i* 86* -gnu|powerpc-* -gnu* |mips* -gnu|sparc-* -gnu|thumb-* gnu* )
81
- RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS=64 $cmd ;;
80
+ # Test with the equivalent of _FILE_OFFSET_BITS=64
81
+ RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS=64 $cmd
82
+ # Test with the equivalent of _TIME_BITS=64
83
+ RUST_LIBC_UNSTABLE_GNU_TIME_BITS=64 $cmd
84
+ ;;
82
85
esac
83
86
fi
84
87
You can’t perform that action at this time.
0 commit comments