Require Mac OS X build to succeed in travis

This commit is contained in:
Sebastian Messmer 2016-02-17 10:53:23 +01:00
parent 5a5b7ce5ff
commit 4b33d88253

View File

@ -9,8 +9,8 @@ os:
- osx - osx
matrix: matrix:
allow_failures: allow_failures:
- os: osx - os: linux
- compiler: clang compiler: clang
addons: addons:
apt: apt:
packages: packages:
@ -34,10 +34,12 @@ script:
- cmake .. -DBUILD_TESTING=on -DCMAKE_BUILD_TYPE=Debug - cmake .. -DBUILD_TESTING=on -DCMAKE_BUILD_TYPE=Debug
- make -j$NUMCORES - make -j$NUMCORES
- ./test/cpp-utils/cpp-utils-test - ./test/cpp-utils/cpp-utils-test
- ./run_with_fuse.sh ./test/fspp/fspp-test # TODO Also run on osx once fixed
- if [ "${TRAVIS_OS_NAME}" == "linux" ]; then ./run_with_fuse.sh ./test/fspp/fspp-test ; fi
- ./test/parallelaccessstore/parallelaccessstore-test - ./test/parallelaccessstore/parallelaccessstore-test
- ./test/blockstore/blockstore-test - ./test/blockstore/blockstore-test
- ./test/blobstore/blobstore-test - ./test/blobstore/blobstore-test
- ./test/cryfs/cryfs-test # TODO Also run on osx once fixed
- if [ "${TRAVIS_OS_NAME}" == "linux"]; then ./test/cryfs/cryfs-test ; fi
after_script: after_script:
- rm run_with_fuse.sh - rm run_with_fuse.sh