Remove gcc from Travis CI build

This commit is contained in:
Austin Eng 2017-06-08 13:28:02 -04:00 committed by Austin Eng
parent 83703293eb
commit e6e30ecdbf
1 changed files with 0 additions and 4 deletions

View File

@ -11,7 +11,6 @@ env:
compiler: compiler:
- clang - clang
- gcc
addons: addons:
# Everything under apt is only used on linux # Everything under apt is only used on linux
@ -24,8 +23,6 @@ addons:
- george-edison55-precise-backports - george-edison55-precise-backports
packages: packages:
# Get recent compilers # Get recent compilers
- gcc-6
- g++-6
- clang-5.0 - clang-5.0
# Get a newer CMake than the 2.8 default # Get a newer CMake than the 2.8 default
- cmake - cmake
@ -44,7 +41,6 @@ install:
script: script:
# Use the more recent compilers we just installed # Use the more recent compilers we just installed
- if [ "$TRAVIS_OS_NAME" == "linux" ] && [ "$CXX" == "g++" ]; then export CXX="g++-6" CC="gcc-6"; fi
- if [ "$TRAVIS_OS_NAME" == "linux" ] && [ "$CXX" == "clang++" ]; then export CXX="clang++-5.0" CC="clang-5.0"; fi - if [ "$TRAVIS_OS_NAME" == "linux" ] && [ "$CXX" == "clang++" ]; then export CXX="clang++-5.0" CC="clang-5.0"; fi
# Build # Build