Skip to content

Commit 7dc4c47

Browse files
committed
[CI] only oldest and newest gcc on mac
1 parent d06ecd4 commit 7dc4c47

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

.travis.yml

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ before_install:
1010
- test $(uname) = "Linux" && sudo apt-get update -y || true
1111
- 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
1212
- test $(uname) = "Darwin" && brew update || true
13-
- test $(uname) = "Darwin" && brew install gcc@5 || true
14-
- test $(uname) = "Darwin" && brew install gcc@6 || true
13+
- test $(uname) = "Darwin" && brew install [email protected] || true
14+
#- test $(uname) = "Darwin" && brew install gcc@5 || true
15+
#- test $(uname) = "Darwin" && brew install gcc@6 || true
16+
- test $(uname) = "Darwin" && brew install gcc || true
1517
matrix:
1618
include:
1719
- os: linux
@@ -35,13 +37,17 @@ matrix:
3537
compiler: gcc-4.9
3638
install: export CXX="g++-4.9"
3739
env: CMAKE_ARGS="-DLAMBDA_FASTBUILD=1 -DLAMBDA_STATIC_BUILD=1"
40+
#- os: osx
41+
#compiler: gcc-5
42+
#install: export CXX="g++-5"
43+
#env: CMAKE_ARGS="-DLAMBDA_FASTBUILD=1"
44+
#- os: osx
45+
#compiler: gcc-6
46+
#install: export CXX="g++-6"
47+
#env: CMAKE_ARGS="-DLAMBDA_FASTBUILD=1"
3848
- os: osx
39-
compiler: gcc-5
40-
install: export CXX="g++-5"
41-
env: CMAKE_ARGS="-DLAMBDA_FASTBUILD=1"
42-
- os: osx
43-
compiler: gcc-6
44-
install: export CXX="g++-6"
49+
compiler: gcc-7
50+
install: export CXX="g++-7"
4551
env: CMAKE_ARGS="-DLAMBDA_FASTBUILD=1"
4652

4753
#- os: osx

0 commit comments

Comments
 (0)