travis: Use gcc-4.9 instead of gcc-4.8

This commit is contained in:
Tatsuhiro Tsujikawa 2015-04-22 23:47:13 +09:00
parent 86ddda5c0e
commit 6b8aa36c98
1 changed files with 3 additions and 4 deletions

View File

@ -1,7 +1,6 @@
language: cpp language: cpp
compiler: compiler:
- clang - clang
#Disable gcc build for the moment...
- gcc - gcc
sudo: false sudo: false
addons: addons:
@ -9,8 +8,8 @@ addons:
sources: sources:
- ubuntu-toolchain-r-test - ubuntu-toolchain-r-test
packages: packages:
- g++-4.8 - g++-4.9
- libstdc++-4.8-dev - libstdc++-4.9-dev
- autoconf - autoconf
- automake - automake
- autotools-dev - autotools-dev
@ -26,7 +25,7 @@ addons:
- libjemalloc-dev - libjemalloc-dev
before_install: before_install:
- $CC --version - $CC --version
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi
- $CC --version - $CC --version
before_script: before_script:
- autoreconf -i - autoreconf -i