diff options
| author | Alex Lyon <[email protected]> | 2017-08-05 12:37:53 -0700 |
|---|---|---|
| committer | alex <[email protected]> | 2017-08-05 21:37:53 +0200 |
| commit | fb2a1a9262b481af62f9c0025a0f180626d19241 (patch) | |
| tree | 10499d279283c67d34b18062dc09be39003a3672 | |
| parent | >.> (diff) | |
| download | serenity-fb2a1a9262b481af62f9c0025a0f180626d19241.tar.xz serenity-fb2a1a9262b481af62f9c0025a0f180626d19241.zip | |
make Travis test on OS X (#123)
| -rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 3d32ad0..4e8d7c7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ rust: - nightly os: - linux + - osx cache: directories: - $TRAVIS_BUILD_DIR/target @@ -18,7 +19,7 @@ before_script: - ./autogen.sh - ./configure && make - sudo make install - - sudo ldconfig + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo ldconfig; fi - cd .. script: - cargo test --all-features |