From: Tsuda Kageyu Date: Tue, 23 May 2017 07:52:56 +0000 (+0900) Subject: Fix the Travis-CI testing on OS X. X-Git-Tag: v1.12-beta-1~57 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6000a19f70ef57f993b7f5594a2dcf9651e5801d;p=taglib Fix the Travis-CI testing on OS X. AppleClang 7.3 doesn't get along with CppUnit by default. --- diff --git a/.travis.yml b/.travis.yml index d724ae9d..88836480 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,8 @@ os: - linux - osx +dist: trusty + compiler: - gcc - clang @@ -24,5 +26,4 @@ matrix: install: - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install cppunit; fi -script: cmake -DBUILD_TESTS=ON -DBUILD_EXAMPLES=ON -DBUILD_BINDINGS=ON . && make && make check - +script: cmake -DBUILD_TESTS=ON -DBUILD_EXAMPLES=ON -DBUILD_BINDINGS=ON -DCMAKE_CXX_FLAGS="-std=c++11" . && make && make check