summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index c176843..f1f370d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -25,7 +25,7 @@ install:
# if > or | folding is used, error
# but YAML folds by default on this, so it works (I hope)
-
- if [ "${REAL_CXX}" = "g++-4.7" ];
+ if [ "${REAL_CXX}" = "g++-4.7" ] || [ "${REAL_CXX}" = "g++-4.8" ];
then
sudo add-apt-repository --yes ppa:ubuntu-toolchain-r/test &&
sudo apt-get update -qq;
@@ -38,6 +38,7 @@ install:
## Main test script
script:
+ - ${REAL_CXX} --version
- ./configure --dev CXX=${REAL_CXX} CPPFLAGS=-DQUIET
- make -k -j2
@@ -58,4 +59,5 @@ after_script:
env:
- REAL_CXX=g++-4.6
- REAL_CXX=g++-4.7
+ - REAL_CXX=g++-4.8
- REAL_CXX=clang++