File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,12 @@ matrix:
50
50
- env : TARGET=asmjs-unknown-emscripten
51
51
- env : TARGET=wasm32-unknown-emscripten
52
52
- env : TARGET=wasm32-unknown-unknown BUILD_ONLY=1
53
+ - env : TARGET=x86_64-unknown-freebsd BUILD_ONLY=1
54
+ - env : TARGET=x86_64-unknown-openbsd BUILD_ONLY=1
55
+ - env : TARGET=x86_64-unknown-bitrig BUILD_ONLY=1
56
+ - env : TARGET=x86_64-unknown-netbsd BUILD_ONLY=1
57
+ - env : TARGET=x86_64-unknown-dragonfly BUILD_ONLY=1
58
+ - env : TARGET=x86_64-unknown-solaris BUILD_ONLY=1
53
59
54
60
allow_failures :
55
61
# FIXME: https://github.com/rust-lang/libc/issues/1226
@@ -74,7 +80,11 @@ install:
74
80
script :
75
81
- cargo generate-lockfile --manifest-path libc-test/Cargo.toml
76
82
- if [[ $TRAVIS_OS_NAME = "linux" ]]; then
77
- sh ci/run-docker.sh $TARGET;
83
+ if [[ $BUILD_ONLY = "1" ]]; then
84
+ sh ci/run.sh $TARGET;
85
+ else
86
+ sh ci/run-docker.sh $TARGET;
87
+ fi
78
88
else
79
89
export CARGO_TARGET_DIR=`pwd`/target;
80
90
sh ci/run.sh $TARGET;
Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ run() {
28
28
--volume " $( pwd) " :/checkout:ro \
29
29
--volume " $( pwd) " /target:/checkout/target \
30
30
--env CARGO_TARGET_DIR=/checkout/target \
31
- --env BUILD_ONLY=" $BUILD_ONLY " \
32
31
--workdir /checkout \
33
32
libc \
34
33
ci/run.sh " ${1} "
You can’t perform that action at this time.
0 commit comments