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.
pull/1006/head
Nirbheek Chauhan 8 years ago
parent ae5a362950
commit d41b903f07
  1. 6
      .travis.yml

@ -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…
Cancel
Save