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-07-07 09:09:06 +02:00
|
|
|
- variant=test_debug
|
|
|
|
- variant=test_release
|
|
|
|
- variant=test_barebones
|
2015-06-15 02:37:14 +02:00
|
|
|
|
2015-07-07 09:09:06 +02:00
|
|
|
compiler:
|
|
|
|
- gcc
|
|
|
|
- clang
|
2015-06-20 16:40:47 +02:00
|
|
|
|
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
|
|
|
|
packages:
|
|
|
|
- libboost1.55-all-dev
|
|
|
|
- python2.7-dev
|
2015-06-05 03:58:02 +02:00
|
|
|
|
2015-07-07 09:09:06 +02:00
|
|
|
install:
|
|
|
|
- if [ $TRAVIS_OS_NAME == "osx" ]; then sudo brew install boost boost-build python27-dev; fi
|
|
|
|
- 'echo "using gcc : : ccache g++ ;" > ~/user-config.jam'
|
|
|
|
- 'echo "using clang : : ccache clang++ ;" >> ~/user-config.jam'
|
|
|
|
- '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-07-07 09:09:06 +02:00
|
|
|
- which $CXX
|
|
|
|
- ls -la `which $CXX`
|
2015-06-05 02:15:57 +02:00
|
|
|
|
2015-07-07 09:09:06 +02:00
|
|
|
script:
|
|
|
|
- cd test
|
|
|
|
- bjam -j 3 variant=$variant warnings=off -l900 $CC
|
|
|
|
- cd ../examples
|
|
|
|
- bjam -j 3 variant=$variant warnings=off $CC
|
2015-07-27 02:22:03 +02:00
|
|
|
- cd ../bindings/python
|
2015-07-27 09:22:50 +02:00
|
|
|
- bjam -j 3 variant=$variant warnings=off $CC stage_module
|
2015-07-27 17:14:43 +02:00
|
|
|
- LD_LIBRARY_PATH=. python test.py
|
2015-07-07 09:09:06 +02:00
|
|
|
- ccache --show-stats
|