From 3c53926d0c63cb73008c1ce2ada0de8c1d8b3db2 Mon Sep 17 00:00:00 2001 From: Al Date: Sat, 30 Jan 2016 14:31:10 -0500 Subject: [PATCH] [build] Using gcc 4.8 in Travis as it compiles faster. travis_wait no longer required --- .travis.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 66a0a509..af1f35d8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,13 +4,16 @@ compiler: - clang addons: apt: + sources: + - ubuntu-toolchain-r-test packages: + - gcc-4.8 - libsnappy-dev - - pkg-config - - autoconf-archive before_script: - ./bootstrap.sh +install: + - if [ "$CC" = "gcc ]; then export CC="gcc-4.8"; fi script: - ./configure --datadir=$(pwd)/data - - travis_wait make + - make - make check