diff options
author | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2016-11-28 11:05:31 +0100 |
---|---|---|
committer | Alexis La Goutte <alexis.lagoutte@gmail.com> | 2016-11-28 19:16:09 +0100 |
commit | c6eb41b7bfa84971fabb06ac3c44320d756d66ca (patch) | |
tree | 5b788ef04affa0e42720626404aee98d6ae998e3 | |
parent | eeef26ae594df3e30bd6f34d3e7b2dbaff836d14 (diff) |
Remove gcc when build with osx
osx buildbot use always clang for the build
-rw-r--r-- | .travis.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 630636075..00032ec26 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,10 +8,15 @@ compiler: - clang - gcc +matrix: + exclude: + # osx use always clang for build... + - os: osx + compiler: gcc + install: #macos - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update; fi -# - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install libtool; fi #linux - if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo apt-get update || true; fi - if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo apt-get install build-essential; fi |