Skip to content

Commit 6d817ed

Browse files
committed
Merge pull request rust-lang#34 from alexcrichton/less-ci
Only run libc-test on nightly
2 parents 57ba1fa + 094b0d4 commit 6d817ed

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)