Skip to content

Commit

Permalink
[CI] only oldest and newest gcc on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
h-2 committed Jun 16, 2017
1 parent d06ecd4 commit 7dc4c47
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ before_install:
- test $(uname) = "Linux" && sudo apt-get update -y || true
- test $(uname) = "Linux" && sudo apt-get install -qq -y g++-4.9 g++-5 g++-6 clang-3.8 clang-3.9 cmake cmake-data zlib1g-dev libbz2-dev || true
- test $(uname) = "Darwin" && brew update || true
- test $(uname) = "Darwin" && brew install gcc@5 || true
- test $(uname) = "Darwin" && brew install gcc@6 || true
- test $(uname) = "Darwin" && brew install [email protected] || true
#- test $(uname) = "Darwin" && brew install gcc@5 || true
#- test $(uname) = "Darwin" && brew install gcc@6 || true
- test $(uname) = "Darwin" && brew install gcc || true
matrix:
include:
- os: linux
Expand All @@ -35,13 +37,17 @@ matrix:
compiler: gcc-4.9
install: export CXX="g++-4.9"
env: CMAKE_ARGS="-DLAMBDA_FASTBUILD=1 -DLAMBDA_STATIC_BUILD=1"
#- os: osx
#compiler: gcc-5
#install: export CXX="g++-5"
#env: CMAKE_ARGS="-DLAMBDA_FASTBUILD=1"
#- os: osx
#compiler: gcc-6
#install: export CXX="g++-6"
#env: CMAKE_ARGS="-DLAMBDA_FASTBUILD=1"
- os: osx
compiler: gcc-5
install: export CXX="g++-5"
env: CMAKE_ARGS="-DLAMBDA_FASTBUILD=1"
- os: osx
compiler: gcc-6
install: export CXX="g++-6"
compiler: gcc-7
install: export CXX="g++-7"
env: CMAKE_ARGS="-DLAMBDA_FASTBUILD=1"

#- os: osx
Expand Down

0 comments on commit 7dc4c47

Please sign in to comment.