We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ee3935 commit d1eabe6Copy full SHA for d1eabe6
.travis.yml
@@ -7,8 +7,8 @@ services:
7
install:
8
- if [ -z "$NO_ADD" ]; then rustup target add $TARGET; fi
9
script:
10
- - cargo build
11
- - cargo build --no-default-features
+ - cargo build $OPT
+ - cargo build $OPT --no-default-features
12
- cargo generate-lockfile --manifest-path libc-test/Cargo.toml
13
- if [[ $TRAVIS_OS_NAME = "linux" ]]; then
14
sh ci/run-docker.sh $TARGET;
@@ -93,6 +93,9 @@ matrix:
93
env: TARGET=x86_64-apple-darwin NO_ADD=1
94
osx_image: xcode8.3
95
rust: nightly
96
+ # not available on stable
97
+ - env: TARGET=x86_64-unknown-linux-gnux32 OPT="--release"
98
+ rust: nightly
99
100
# QEMU based targets that compile in an emulator
101
- env: TARGET=x86_64-unknown-freebsd
0 commit comments