summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-11-03 15:23:22 -0800
committerAlex Crichton <alex@alexcrichton.com>2015-11-03 15:23:22 -0800
commit6d817ed05af919cc3dd5ea2889018eaa48d87ab9 (patch)
treeb5e0370dcfc8a8bfae27134e5d6448498fec3c54
parent57ba1fa360f9289e092679122ce7a645b8f5cc6b (diff)
parent094b0d4e854651165d3b5addd5534b2e5d8bd766 (diff)
downloadrust-libc-6d817ed05af919cc3dd5ea2889018eaa48d87ab9.tar.gz
Merge pull request #34 from alexcrichton/less-ci
Only run libc-test on nightly
-rw-r--r--.travis.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index f772fb525b..c53fcf1e21 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -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