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:
parent
ae5a362950
commit
d41b903f07
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue