Browse Source

.travis.yml: Adding missing envs and compiler types to macOS builds.

pull/384/head
David Runge 7 years ago
parent
commit
836942d4ff
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      .travis.yml

+ 5
- 0
.travis.yml View File

@@ -62,13 +62,18 @@ matrix:
compiler: clang
# osx with gcc6
- os: osx
compiler: gcc
env:
- MATRIX_EVAL="brew install gcc6 && CC=gcc-6 && CXX=g++-7"
# osx with gcc7
- os: osx
compiler: gcc
env:
- MATRIX_EVAL="brew install gcc7 && CC=gcc-7 && CXX=g++-7"
# osx with gcc8
- os: osx
compiler: gcc
env:
- MATRIX_EVAL="brew install gcc8 && CC=gcc-8 && CXX=g++-8"
# osx with xcode8.3/clang
- os: osx


Loading…
Cancel
Save