2015-04-05 13:14:55 +00:00
|
|
|
# making our travis.yml play well with C++11 by obtaining g++4.8
|
|
|
|
# Taken from this file:
|
|
|
|
# https://github.com/beark/ftl/blob/master/.travis.yml
|
2015-03-06 12:27:11 +00:00
|
|
|
before_install:
|
2015-04-05 13:14:55 +00:00
|
|
|
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
|
|
|
- sudo apt-get update -y -qq
|
2015-03-06 12:27:11 +00:00
|
|
|
|
2015-04-05 13:14:55 +00:00
|
|
|
install:
|
|
|
|
- sudo apt-get install -qq --yes --force-yes g++-4.8
|
|
|
|
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50
|
|
|
|
# need to explicitly request version 1.48 since by default we get 1.46 which does not work with C++11
|
|
|
|
- sudo apt-get install -qq wget cmake bash libboost-test1.48-dev libboost-system1.48-dev libboost-filesystem1.48-dev nodejs python-pip python-dev
|
|
|
|
- sudo pip install virtualenv -q
|
2015-03-06 12:27:11 +00:00
|
|
|
script: "./test/test.sh"
|