File tree 1 file changed +18
-3
lines changed
1 file changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -286,14 +286,29 @@ task:
286
286
- name : OpenBSD x86_64
287
287
env :
288
288
TARGET : x86_64-unknown-openbsd
289
- - name : Linux armv7 uclibceabihf
290
- env :
291
- TARGET : armv7-unknown-linux-uclibceabihf
292
289
setup_script :
293
290
- rustup component add rust-src
294
291
<< : *BUILD
295
292
before_cache_script : rm -rf $CARGO_HOME/registry/index
296
293
294
+ # uclibc needs its own task for now, due to Rust bug 95866
295
+ # https://github.com/rust-lang/rust/issues/95866
296
+ task :
297
+ name : Linux armv7 uclibceabihf
298
+ container :
299
+ image : rustlang/rust:nightly
300
+ env :
301
+ BUILD : check
302
+ ZFLAGS : -Zbuild-std
303
+ TARGET : armv7-unknown-linux-uclibceabihf
304
+ TOOLCHAIN : nightly-2022-04-01
305
+ setup_script :
306
+ - rustup toolchain install $TOOLCHAIN --profile minimal
307
+ - rustup component add --toolchain $TOOLCHAIN rust-src
308
+ - rustup component add --toolchain $TOOLCHAIN clippy
309
+ << : *BUILD
310
+ before_cache_script : rm -rf $CARGO_HOME/registry/index
311
+
297
312
# Test that we can build with the lowest version of all dependencies.
298
313
# "cargo test" doesn't work because some of our dev-dependencies, like
299
314
# rand, can't build with their own minimal dependencies.
You can’t perform that action at this time.
0 commit comments