Only run libc-test on nightly

Otherwise just make sure the library builds on other Rust versions
diff --git a/.travis.yml b/.travis.yml
index f772fb5..c53fcf1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -7,7 +7,11 @@
 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