aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorAlec Thomas <alec@swapoff.org>2014-07-07 14:09:32 +1000
committerAlec Thomas <alec@swapoff.org>2014-07-07 14:09:32 +1000
commit1b878b7ff1f003e558baafe1b58ddea10d8c060d (patch)
tree5375478b724fff0238aa7a8f942a7a512858be9f /.travis.yml
parent36a991d4c6d9ae5515d4e8e3a2c784ed87b65b4b (diff)
Maybe fix the build?
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 1 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 611553a..8f6fb3c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,14 +2,11 @@ language: cpp
compiler:
- clang
- gcc
-env:
- - USE_STD_SHARED_PTR=1
- - USE_STD_SHARED_PTR=0
before_install:
- sudo apt-add-repository -y ppa:jkeiren/ppa
- if test $CC = gcc; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi
- sudo apt-get update -qq
- - if test $CC = gcc; then sudo apt-get install gcc-4.7 g++-4.7; fi
+ - if test $CC = gcc; then sudo apt-get install --yes --force-yes gcc-4.7 g++-4.7; fi
- if test $CC = gcc; then sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.7 20; fi
- if test $CC = gcc; then sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.7 20; fi
- if test $CC = gcc; then sudo update-alternatives --config gcc; fi