diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-11-08 16:08:50 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-11-08 16:08:50 +0530 |
commit | d41b903f07dde2b8330f2fea6b4e7b279e099f4c (patch) | |
tree | a7291c9a047da548f70b9fc2b11edfd928537d08 | |
parent | ae5a3629509fdd8f17fbfcecbfeb6798d2be6630 (diff) | |
download | meson-d41b903f07dde2b8330f2fea6b4e7b279e099f4c.zip meson-d41b903f07dde2b8330f2fea6b4e7b279e099f4c.tar.gz meson-d41b903f07dde2b8330f2fea6b4e7b279e099f4c.tar.bz2 |
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.
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index bc52ffa..964c157 100644 --- a/.travis.yml +++ b/.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 |