summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2013-08-23 12:14:38 -0700
committerBen Longbons <b.r.longbons@gmail.com>2013-08-23 12:14:56 -0700
commite8880ef4d8c00de91f72e7aa2d75b05abdecdafb (patch)
treeca56d087037b6b551a5b92f9c264977528120115 /.travis.yml
parentaf84f7a0672dc9ff2d0a9e250b9e1adb9c5de4dc (diff)
downloadtmwa-e8880ef4d8c00de91f72e7aa2d75b05abdecdafb.tar.gz
tmwa-e8880ef4d8c00de91f72e7aa2d75b05abdecdafb.tar.bz2
tmwa-e8880ef4d8c00de91f72e7aa2d75b05abdecdafb.tar.xz
tmwa-e8880ef4d8c00de91f72e7aa2d75b05abdecdafb.zip
Add gcc 4.8 to travis spec
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++