From b600f05bd2cfbb7c6fe440c906c255fe748aaec9 Mon Sep 17 00:00:00 2001 From: Mark Pictor Date: Sun, 8 Feb 2015 14:58:29 -0500 Subject: [PATCH] tweak travis-ci more --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2de6db18b..ceb38acf6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ sudo: false language: cpp compiler: - clang -script: mkdir build && cd build && cmake .. -DSC_ENABLE_TESTING=ON && make -j3 && ctest -j2; if [ $? -ne 0 ]; then echo; echo; echo "-----------------------------"; grep -niB20 "Test Failed" Testing/Temporary/LastTest.log; fi +script: mkdir build && cd build && cmake .. -DSC_ENABLE_TESTING=ON && make -j3 && ctest -j2; if [ $? -ne 0 ]; then echo; echo; echo "-----------------------------"; grep -niB20 "Test Failed" Testing/Temporary/LastTest.log && false; fi branches: only: - master @@ -14,3 +14,6 @@ notifications: os: - linux - osx +matrix: + allow_failures: + - os: osx