From e631b9d6976e223a46144d21249c996e6e61482f Mon Sep 17 00:00:00 2001 From: Ludovic Rousseau Date: Mon, 29 Feb 2016 20:47:09 +0100 Subject: [PATCH] travis: do not fail on error on Mac OS X The compilation on Mac OS X using clang generates the warning: clang: warning: argument unused during compilation: '-pthread' This is because -pthread is passed during link and this argument is unused. This problem will be hard to fix. The best for now is to NOT fail on warning :-( --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9d5e58e7..75806fa5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -63,7 +63,7 @@ before_script: script: - if [ "${COVERITY_SCAN_BRANCH}" != 1 ]; then if [ $TRAVIS_OS_NAME == osx ]; then - CFLAGS="-Werror" ./MacOSX/build; + ./MacOSX/build; else make; fi;