travis.yml: Don't test for GCC on OS X

GCC on OS X is just a wrapper around Clang, so the test results will
always be identical.
This commit is contained in:
Nirbheek Chauhan 2016-11-08 16:08:50 +05:30
parent ae5a362950
commit d41b903f07
1 changed files with 6 additions and 0 deletions

View File

@ -18,6 +18,12 @@ language:
services:
- docker
matrix:
exclude:
# On OS X gcc is just a wrapper around clang, so don't waste time testing that
- os: osx
compiler: gcc
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ninja python3; fi