Skip to content

Commit 094b0d4

Browse files
committed
Only run libc-test on nightly
Otherwise just make sure the library builds on other Rust versions
1 parent 57ba1fa commit 094b0d4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ rust:
77
services:
88
- docker
99
script:
10-
- sh ci/run-travis.sh
10+
- if [[ $TRAVIS_RUST_VERSION = nightly* ]]; then
11+
sh ci/run-travis.sh;
12+
else
13+
cargo build;
14+
fi
1115
os:
1216
- linux
1317
- osx

0 commit comments

Comments
 (0)