Skip to content

Commit d1eabe6

Browse files
committed
Enable x86_64-unknown-linux-gnux32 on CI
1 parent 0ee3935 commit d1eabe6

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ services:
77
install:
88
- if [ -z "$NO_ADD" ]; then rustup target add $TARGET; fi
99
script:
10-
- cargo build
11-
- cargo build --no-default-features
10+
- cargo build $OPT
11+
- cargo build $OPT --no-default-features
1212
- cargo generate-lockfile --manifest-path libc-test/Cargo.toml
1313
- if [[ $TRAVIS_OS_NAME = "linux" ]]; then
1414
sh ci/run-docker.sh $TARGET;
@@ -93,6 +93,9 @@ matrix:
9393
env: TARGET=x86_64-apple-darwin NO_ADD=1
9494
osx_image: xcode8.3
9595
rust: nightly
96+
# not available on stable
97+
- env: TARGET=x86_64-unknown-linux-gnux32 OPT="--release"
98+
rust: nightly
9699

97100
# QEMU based targets that compile in an emulator
98101
- env: TARGET=x86_64-unknown-freebsd

0 commit comments

Comments
 (0)