Skip to content

Commit

Permalink
Merge pull request rust-lang#34 from alexcrichton/less-ci
Browse files Browse the repository at this point in the history
Only run libc-test on nightly
  • Loading branch information
alexcrichton committed Nov 3, 2015
2 parents 57ba1fa + 094b0d4 commit 6d817ed
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ rust:
services:
- docker
script:
- sh ci/run-travis.sh
- if [[ $TRAVIS_RUST_VERSION = nightly* ]]; then
sh ci/run-travis.sh;
else
cargo build;
fi
os:
- linux
- osx
Expand Down

0 comments on commit 6d817ed

Please sign in to comment.