File tree Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Expand file tree Collapse file tree 3 files changed +18
-1
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,13 +201,21 @@ 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
# FIXME(ppc): SIGILL running tests, see
199
209
# https://github.com/rust-lang/libc/pull/4254#issuecomment-2636288713
200
210
# - target: powerpc-unknown-linux-gnu
201
211
# - target: powerpc-unknown-linux-gnu
202
212
# env:
203
213
# RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS: 64
204
214
# artifact-tag: offset-bits64
215
+ # - target: powerpc-unknown-linux-gnu
216
+ # env:
217
+ # RUST_LIBC_UNSTABLE_GNU_TIME_BITS: 64
218
+ # artifact-tag: time-bits64
205
219
timeout-minutes : 25
206
220
env :
207
221
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 @@ -77,7 +77,9 @@ test_target() {
77
77
case " $target " in
78
78
# Test with the equivalent of __FILE_OFFSET_BITS=64
79
79
arm* -gnu* |i* 86* -gnu|powerpc-* -gnu* |mips* -gnu|sparc-* -gnu|thumb-* gnu* )
80
- RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS=64 $cmd ;;
80
+ RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS=64 $cmd
81
+ RUST_LIBC_UNSTABLE_GNU_TIME_BITS=64 $cmd
82
+ ;;
81
83
esac
82
84
fi
83
85
You can’t perform that action at this time.
0 commit comments