Remove gcc when build with osx

osx buildbot use always clang for the build
This commit is contained in:
Alexis La Goutte 2016-11-28 11:05:31 +01:00
parent eeef26ae59
commit c6eb41b7bf

View file

@ -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