aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml13
1 files changed, 11 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index cec0186..d7a50c4 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,6 +1,7 @@
language: cpp
sudo: false
+cache: ccache
notifications:
irc: "chat.freenode.net##crow"
@@ -11,14 +12,22 @@ compiler:
env:
matrix:
- COMPILER=g++-4.8 CCOMPILER=gcc-4.8 PUSH_COVERAGE=ON
+ - COMPILER=g++-4.9 CCOMPILER=gcc-4.9
+ - COMPILER=g++-5 CCOMPILER=gcc-5
+ - COMPILER=clang++-3.6 CCOMPILER=clang-3.6
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- boost-latest
+ - llvm-toolchain-precise
+ - llvm-toolchain-precise-3.6
packages:
- g++-4.8
+ - g++-4.9
+ - g++-5
+ - clang-3.6
- libboost1.55-all-dev
- python-pip
@@ -32,8 +41,8 @@ before_script:
- cmake --version
- cmake ..
-script: make && ctest
+script: make -j2 && ctest -j2
after_success:
- cd ..
- - if [ "PUSH_COVERAGE" == "ON" ]; then coveralls --gcov gcov-4.8 -i include --gcov-options '\-lp'; fi
+ - if [ "$PUSH_COVERAGE" == "ON" ]; then coveralls --gcov gcov-4.8 -i include --gcov-options '\-lp'; fi