From d41b903f07dde2b8330f2fea6b4e7b279e099f4c Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Tue, 8 Nov 2016 16:08:50 +0530 Subject: [PATCH] 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. --- .travis.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.travis.yml b/.travis.yml index bc52ffa0b..964c15790 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