Exclude building against GCC on OS X, since it's actually clang

This commit is contained in:
Evan Krall
2016-07-03 16:03:54 -07:00
parent eac11a89c1
commit 14f7bc56b0

View File

@@ -9,6 +9,16 @@ os:
- linux
- osx
compiler:
- clang
- gcc
matrix:
exclude:
# /usr/bin/gcc on OS X is clang, so it's not meaningful to build against both.
- os: osx
compiler: gcc
addons:
apt:
sources:
@@ -18,10 +28,6 @@ addons:
- qtdeclarative5-dev
- libfftw3-dev
compiler:
- clang
- gcc
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
# cmake and pkg-config are already installed, liquid-dsp is handled by before_script.