diff options
| author | Steven Fackler <[email protected]> | 2015-02-09 19:48:29 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-02-09 19:48:29 -0800 |
| commit | ba7141b4b57be1ba5817bddd3112d612673d0a5f (patch) | |
| tree | fcc9dcd2f27931298b58c6446227316088cf7477 | |
| parent | Enable multi OS builds (diff) | |
| download | rust-openssl-ba7141b4b57be1ba5817bddd3112d612673d0a5f.tar.xz rust-openssl-ba7141b4b57be1ba5817bddd3112d612673d0a5f.zip | |
Don't test with features enabled on OSX
| -rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index c9ffb249..f72d7930 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ before_script: - openssl s_server -accept 15418 -www -cert openssl/test/cert.pem -key openssl/test/key.pem >/dev/null 2>&1 & script: - (cd openssl && cargo test) -- (cd openssl && cargo test --features $FEATURES) +- (test $TRAVIS_OS_NAME != "osx" && cd openssl && cargo test --features $FEATURES) - ./.travis/build_docs.sh after_success: - test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && ./.travis/update_docs.sh |