2015-06-05 02:15:57 +02:00
|
|
|
language: cpp
|
|
|
|
|
2015-07-07 09:09:06 +02:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
|
2015-06-15 02:37:14 +02:00
|
|
|
env:
|
2015-08-20 02:10:14 +02:00
|
|
|
- variant=test_debug cc=gcc-cpp11 sim=1
|
|
|
|
- variant=test_debug cc=clang-cpp11 sim=0
|
|
|
|
- variant=test_debug cc=gcc-cpp98 sim=0
|
|
|
|
- variant=test_release cc=gcc-cpp11 sim=0
|
|
|
|
- variant=test_barebones cc=gcc-cpp11 sim=0
|
2015-06-20 16:40:47 +02:00
|
|
|
|
2015-08-19 21:38:41 +02:00
|
|
|
git:
|
|
|
|
submodules: false
|
|
|
|
|
2015-07-07 09:09:06 +02:00
|
|
|
# container-based builds
|
|
|
|
sudo: false
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.ccache
|
2015-06-05 02:15:57 +02:00
|
|
|
|
2015-07-07 09:09:06 +02: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 08:19:47 +02:00
|
|
|
- ubuntu-toolchain-r-test
|
2015-07-07 09:09:06 +02:00
|
|
|
packages:
|
|
|
|
- libboost1.55-all-dev
|
2015-08-08 08:07:38 +02:00
|
|
|
- libboost1.55-tools-dev
|
2015-07-07 09:09:06 +02:00
|
|
|
- python2.7-dev
|
2015-08-08 20:59:02 +02:00
|
|
|
- g++-4.8
|
2015-06-05 03:58:02 +02:00
|
|
|
|
2015-08-08 05:17:33 +02:00
|
|
|
before_install:
|
2015-08-19 21:38:41 +02:00
|
|
|
- git submodule update --init --recursive
|
2015-08-08 05:17:33 +02:00
|
|
|
|
2015-07-07 09:09:06 +02:00
|
|
|
install:
|
2015-08-21 10:01:01 +02:00
|
|
|
- 'echo "using gcc : cpp11 : ccache g++-4.8 : <cflags>-std=c11 <cxxflags>-std=c++11 ;" > ~/user-config.jam'
|
|
|
|
- 'echo "using gcc : cpp98 : ccache g++-4.8 : <cflags>-std=c99 <cxxflags>-std=c++98 ;" >> ~/user-config.jam'
|
|
|
|
- 'echo "using clang : cpp11 : ccache clang++ : <cflags>-std=c11 <cxxflags>-std=c++11 ;" >> ~/user-config.jam'
|
|
|
|
- 'echo "using clang : cpp98 : ccache clang++ : <cflags>-std=c99 <cxxflags>-std=c++98 ;" >> ~/user-config.jam'
|
2015-07-07 09:09:06 +02:00
|
|
|
- 'echo "using python : 2.7 ;" >> ~/user-config.jam'
|
2015-07-12 08:21:53 +02:00
|
|
|
- ccache -V && ccache --show-stats && ccache --zero-stats
|
2015-06-05 02:15:57 +02:00
|
|
|
|
2015-07-07 09:09:06 +02:00
|
|
|
script:
|
|
|
|
- cd test
|
2015-08-21 14:52:07 +02:00
|
|
|
- bjam --hash -j3 warnings-as-errors=on variant=$variant -l900 $CC
|
2015-07-07 09:09:06 +02:00
|
|
|
- cd ../examples
|
2015-08-21 14:52:07 +02:00
|
|
|
- bjam --hash -j3 warnings-as-errors=on variant=$variant $CC
|
2015-07-27 02:22:03 +02:00
|
|
|
- cd ../bindings/python
|
2015-08-21 14:52:07 +02:00
|
|
|
- bjam --hash -j3 warnings-as-errors=on variant=$variant $CC stage_module
|
2015-07-27 17:14:43 +02:00
|
|
|
- LD_LIBRARY_PATH=. python test.py
|
2015-08-20 02:10:14 +02:00
|
|
|
- if [ $sim ]; then
|
2015-08-09 06:56:37 +02:00
|
|
|
cd ../../simulation;
|
2015-08-21 00:26:11 +02:00
|
|
|
bjam --hash -j3 crypto=built-in $CC;
|
2015-08-09 06:56:37 +02:00
|
|
|
fi
|
2015-07-07 09:09:06 +02:00
|
|
|
- ccache --show-stats
|
2015-08-08 07:10:36 +02:00
|
|
|
|