From 771ce976cc8ac7888f84aa579fc9e25dc11f486e Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Fri, 4 Jul 2014 07:29:30 -0700 Subject: [PATCH] Use the boost 1.55 tarball on travis since cloning the repo takes forever --- .travis.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index a844bbfcc..aa18e7feb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,13 +13,16 @@ install: - sudo luarocks install busted > /dev/null - git submodule --quiet init - - git submodule --quiet update vendor/boost vendor/googletest + - git submodule --quiet update vendor/googletest - - cd vendor/boost - - git submodule --quiet update --init --recursive + - cd vendor + - rm -rf boost + - wget http://sourceforge.net/projects/boost/files/boost/1.55.0/boost_1_55_0.tar.bz2/download + - tar xjf download + - mv boost_1_55_0 boost + - cd boost - ./bootstrap.sh - - ./b2 headers > /dev/null - - ./b2 -layout=system threading=multi cxxflags=-std=c++11 link=shared variant=release --without-python --without-iostreams --without-serialization --without-graph --without-log --without-math --without-signals --without-test --without-wave --without-mpi --without-program_options --without-graph_parallel --without-context --without-coroutine --without-random --without-timer --without-date_time + - ./b2 -j3 -layout=system threading=multi cxxflags=-std=c++11 link=shared variant=release --without-python --without-iostreams --without-serialization --without-graph --without-log --without-math --without-signals --without-test --without-wave --without-mpi --without-program_options --without-graph_parallel --without-context --without-coroutine --without-random --without-timer --without-date_time - cd ../.. script: - export CPATH=$(pwd)/vendor/boost