diff options
| author | Steven Fackler <[email protected]> | 2015-04-27 23:07:22 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-04-27 23:07:57 -0700 |
| commit | 95056ab67671d0339242d5080675e352be6e7fee (patch) | |
| tree | 6cae7daa873df4bb92028085f9801b482c31a07d | |
| parent | Release v0.6.1 (diff) | |
| download | rust-openssl-95056ab67671d0339242d5080675e352be6e7fee.tar.xz rust-openssl-95056ab67671d0339242d5080675e352be6e7fee.zip | |
Test on both nightly and beta
| -rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 82f95481..b302c491 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,7 @@ language: rust +rust: +- nightly +- beta os: - osx - linux @@ -15,4 +18,4 @@ script: - (test $TRAVIS_OS_NAME == "osx" || (cd openssl && LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH cargo test --features "$FEATURES")) - ./.travis/build_docs.sh after_success: -- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && ./.travis/update_docs.sh +- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && test $TRAVIS_RUST_VERSION == "nightly" && ./.travis/update_docs.sh |