diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index f1f370d..30cb6d2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -53,11 +53,25 @@ after_script: # compiler: gcc-4.6 # compiler: gcc-4.7 # compiler: clang +compiler: + - gcc + - clang ## Environment variables to expand the build matrix ## Needed because 'compiler: gcc' overwrites CXX +## https://github.com/travis-ci/travis-ci/issues/979 env: - REAL_CXX=g++-4.6 - REAL_CXX=g++-4.7 - REAL_CXX=g++-4.8 - REAL_CXX=clang++ +matrix: + exclude: + - compiler: gcc + env: REAL_CXX=clang++ + - compiler: clang + env: REAL_CXX=g++-4.6 + - compiler: clang + env: REAL_CXX=g++-4.7 + - compiler: clang + env: REAL_CXX=g++-4.8 |