2015-06-04 20:15:57 -04:00
|
|
|
language: cpp
|
|
|
|
|
2015-07-07 15:09:06 +08:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
|
2015-06-14 20:37:14 -04:00
|
|
|
env:
|
2015-07-07 15:09:06 +08:00
|
|
|
- variant=test_debug
|
|
|
|
- variant=test_release
|
|
|
|
- variant=test_barebones
|
2015-06-14 20:37:14 -04:00
|
|
|
|
2015-07-07 15:09:06 +08:00
|
|
|
compiler:
|
|
|
|
- gcc
|
|
|
|
- clang
|
2015-06-20 10:40:47 -04:00
|
|
|
|
2015-07-07 15:09:06 +08:00
|
|
|
# container-based builds
|
|
|
|
sudo: false
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.ccache
|
2015-06-04 20:15:57 -04:00
|
|
|
|
2015-07-07 15:09:06 +08:00
|
|
|
# sources list: https://github.com/travis-ci/apt-source-whitelist/blob/master/ubuntu.json,
|
|
|
|
# packages list: https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- boost-latest
|
2015-08-08 02:19:47 -04:00
|
|
|
- ubuntu-toolchain-r-test
|
2015-07-07 15:09:06 +08:00
|
|
|
packages:
|
|
|
|
- libboost1.55-all-dev
|
2015-08-08 02:07:38 -04:00
|
|
|
- libboost1.55-tools-dev
|
2015-07-07 15:09:06 +08:00
|
|
|
- python2.7-dev
|
2015-08-08 14:59:02 -04:00
|
|
|
- g++-4.8
|
2015-06-04 21:58:02 -04:00
|
|
|
|
2015-08-07 23:17:33 -04:00
|
|
|
before_install:
|
2015-08-08 14:59:02 -04:00
|
|
|
- git submodule foreach git pull origin master --depth=1
|
2015-08-07 23:17:33 -04:00
|
|
|
|
2015-07-07 15:09:06 +08:00
|
|
|
install:
|
2015-08-08 14:59:02 -04:00
|
|
|
- 'echo "using gcc : : ccache g++-4.8 : <cxxflags>-std=c++11 ;" > ~/user-config.jam'
|
|
|
|
- 'echo "using clang : : ccache clang++ : <cxxflags>-std=c++11 ;" >> ~/user-config.jam'
|
2015-07-07 15:09:06 +08:00
|
|
|
- 'echo "using python : 2.7 ;" >> ~/user-config.jam'
|
2015-07-12 14:21:53 +08:00
|
|
|
- ccache -V && ccache --show-stats && ccache --zero-stats
|
2015-06-04 20:15:57 -04:00
|
|
|
|
2015-07-07 15:09:06 +08:00
|
|
|
script:
|
|
|
|
- cd test
|
2015-08-08 02:19:47 -04:00
|
|
|
- bjam -j 3 variant=$variant warnings=off -l900 $CC
|
2015-07-07 15:09:06 +08:00
|
|
|
- cd ../examples
|
2015-08-08 02:19:47 -04:00
|
|
|
- bjam -j 3 variant=$variant warnings=off $CC
|
2015-07-26 17:22:03 -07:00
|
|
|
- cd ../bindings/python
|
2015-08-08 02:19:47 -04:00
|
|
|
- bjam -j 3 variant=$variant warnings=off $CC stage_module
|
2015-07-27 08:14:43 -07:00
|
|
|
- LD_LIBRARY_PATH=. python test.py
|
2015-08-09 00:56:37 -04:00
|
|
|
- if [ $variant == "test_debug" ]; then
|
|
|
|
cd ../../simulation;
|
|
|
|
bjam -j 3 crypto=built-in warnings=off $CC;
|
|
|
|
fi
|
2015-07-07 15:09:06 +08:00
|
|
|
- ccache --show-stats
|
2015-08-08 01:10:36 -04:00
|
|
|
|