summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2013-08-28 11:17:48 -0700
committerBen Longbons <b.r.longbons@gmail.com>2013-08-28 11:17:48 -0700
commitc71f521f3331d105b7de4ad06c6d25b49efae878 (patch)
tree818c9a503179198d762f5e66bb956bcae308820e /.travis.yml
parent2d4c855e377666993a7e2569ff2c5044be3325e0 (diff)
downloadtmwa-c71f521f3331d105b7de4ad06c6d25b49efae878.tar.gz
tmwa-c71f521f3331d105b7de4ad06c6d25b49efae878.tar.bz2
tmwa-c71f521f3331d105b7de4ad06c6d25b49efae878.tar.xz
tmwa-c71f521f3331d105b7de4ad06c6d25b49efae878.zip
On travis, use native clang matrix and add exclusion rules
Hopefully this will fix whatever keeps timing out with apt-get install.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml14
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