2015-06-05 02:15:57 +02:00
|
|
|
language: cpp
|
|
|
|
|
2016-10-08 18:29:46 +02:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- env: variant=test_release lang=cpp11 sim=0 coverage=1 docs=1
|
2016-10-09 23:00:20 +02:00
|
|
|
- env: variant=test_debug lang=sanitizer sim=1 coverage=0
|
2016-10-08 18:29:46 +02:00
|
|
|
- env: variant=test_debug lang=cpp98 sim=0 coverage=0
|
2017-02-25 20:09:11 +01:00
|
|
|
- env: variant=test_barebones lang=cpp11 sim=0 coverage=0 autotools=1
|
2016-10-08 18:29:46 +02:00
|
|
|
|
|
|
|
- env: variant=test_debug lang=cpp11 sim=0 coverage=0 target=osx-tests
|
|
|
|
os: osx
|
|
|
|
osx_image: xcode6.4
|
|
|
|
- env: variant=test_release lang=cpp11 sim=0 coverage=0 docs=1 target=osx-tests
|
|
|
|
os: osx
|
|
|
|
osx_image: xcode6.4
|
|
|
|
- env: variant=test_debug lang=cpp98 sim=0 coverage=0 target=osx-tests
|
|
|
|
os: osx
|
|
|
|
osx_image: xcode6.4
|
2015-06-20 16:40:47 +02:00
|
|
|
|
2015-08-19 21:38:41 +02:00
|
|
|
git:
|
|
|
|
submodules: false
|
|
|
|
|
2015-09-07 02:45:08 +02:00
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
2016-01-20 02:54:34 +01:00
|
|
|
- RC_1_1
|
2015-09-07 02:45:08 +02:00
|
|
|
- RC_1_0
|
|
|
|
|
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
|
2016-10-08 18:29:46 +02:00
|
|
|
- g++-5
|
2015-06-05 03:58:02 +02:00
|
|
|
|
2015-08-08 05:17:33 +02:00
|
|
|
before_install:
|
2015-11-06 06:38:42 +01:00
|
|
|
- git submodule update --init --recursive
|
2015-09-17 02:26:13 +02:00
|
|
|
- if [ $TRAVIS_OS_NAME == "osx" ]; then brew update > /dev/null && brew install --quiet ccache boost-build boost-python; fi
|
2016-02-16 20:39:06 +01:00
|
|
|
- 'if [[ $TRAVIS_OS_NAME == "osx" && $docs = "1" ]]; then
|
2016-07-15 20:42:08 +02:00
|
|
|
brew install --quiet docutils;
|
2016-02-16 20:39:06 +01:00
|
|
|
mkdir -p /Users/travis/Library/Python/2.7/lib/python/site-packages;
|
|
|
|
echo ''import site; site.addsitedir("/usr/local/lib/python2.7/site-packages")'' >> /Users/travis/Library/Python/2.7/lib/python/site-packages/homebrew.pth;
|
|
|
|
sudo easy_install Pygments;
|
|
|
|
sudo easy_install -U aafigure;
|
2016-03-19 01:22:20 +01:00
|
|
|
brew install --quiet graphviz;
|
|
|
|
brew install --quiet Homebrew/python/pillow;
|
2016-02-16 20:39:06 +01:00
|
|
|
fi'
|
2015-09-06 23:29:01 +02:00
|
|
|
|
|
|
|
# disable simulations on OSX for now. It hangs on travis
|
2016-10-08 18:29:46 +02:00
|
|
|
- if [ $TRAVIS_OS_NAME == "osx" ]; then export toolset="darwin-${lang}"; fi
|
2015-09-01 05:23:10 +02:00
|
|
|
- if [ $TRAVIS_OS_NAME == "linux" ]; then export toolset="gcc-${lang}"; fi
|
2015-12-16 03:07:26 +01:00
|
|
|
- if [[ $TRAVIS_OS_NAME == "linux" && $coverage == "1" ]]; then
|
|
|
|
export coverage_toolset=gcc-coverage;
|
|
|
|
pip install --user codecov;
|
|
|
|
else
|
|
|
|
export coverage_toolset=$toolset;
|
|
|
|
fi
|
2016-10-09 23:00:20 +02:00
|
|
|
- 'if [[ $lang == "sanitizer" ]]; then export test_args=testing.arg="--no-stderr-redirect"; fi'
|
2016-10-08 18:29:46 +02:00
|
|
|
- 'echo "toolset: " ${toolset}'
|
|
|
|
- 'echo "target: " ${target}'
|
|
|
|
- 'echo "coverage_toolset: " ${coverage_toolset}'
|
|
|
|
- 'echo "test_args: " ${test_args}'
|
|
|
|
- 'echo "variant: " ${variant}'
|
2016-10-09 23:00:20 +02:00
|
|
|
# disable leak checking for now. it reports some suspicious reports against some
|
|
|
|
# tests
|
|
|
|
- export ASAN_OPTIONS=detect_leaks=0;
|
2015-08-08 05:17:33 +02:00
|
|
|
|
2015-07-07 09:09:06 +02:00
|
|
|
install:
|
2016-10-08 18:29:46 +02:00
|
|
|
- 'if [[ $toolset == "gcc" ]]; then g++-5 --version; fi'
|
|
|
|
- 'echo "using gcc : cpp11 : ccache g++-5 : <cflags>-std=c11 <cxxflags>-std=c++11 ;" > ~/user-config.jam'
|
2016-10-09 23:00:20 +02:00
|
|
|
- 'echo "using gcc : sanitizer : ccache g++-5 : <cflags>-std=c11 <cxxflags>-std=c++11 <compileflags>-fsanitize=address,undefined <compileflags>-fno-sanitize-recover=undefined <linkflags>-fuse-ld=gold <linkflags>-fsanitize=address,undefined <linkflags>-fno-sanitize-recover=undefined ;" >> ~/user-config.jam'
|
2016-10-08 18:29:46 +02:00
|
|
|
- 'echo "using gcc : coverage : ccache g++-5 : <cflags>-std=c11 <cxxflags>-std=c++11 <compileflags>--coverage <linkflags>--coverage ;" >> ~/user-config.jam'
|
|
|
|
- 'echo "using gcc : cpp98 : ccache g++-5 : <cflags>-std=c99 <cxxflags>-std=c++98 ;" >> ~/user-config.jam'
|
2015-09-02 07:30:40 +02:00
|
|
|
|
2015-09-01 05:23:10 +02:00
|
|
|
# osx builds need to disable the deprecated warning because of the openssl
|
|
|
|
# shipping with the system having marked all functions as deprecated. Since
|
|
|
|
# we're building with -Werror, we can't have those warnings
|
|
|
|
- 'echo "using darwin : cpp11 : ccache clang++ : <cflags>-std=c11 <cxxflags>-std=c++11 <compileflags>-Wno-deprecated-declarations ;" >> ~/user-config.jam'
|
2016-10-04 01:32:40 +02:00
|
|
|
- 'echo "using darwin : cpp98 : ccache clang++ : <warnings>off <cflags>-std=c99 <cxxflags>-std=c++98 <compileflags>-Wno-deprecated-declarations ;" >> ~/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
|
2016-02-16 20:39:06 +01:00
|
|
|
- if [[ $docs == "1" && $TRAVIS_OS_NAME == "osx" ]]; then rst2html.py --version; fi
|
2015-06-05 02:15:57 +02:00
|
|
|
|
2015-07-07 09:09:06 +02:00
|
|
|
script:
|
2015-12-20 08:02:09 +01:00
|
|
|
# disable invoking docutils for now, until we can have a modern version of it
|
2015-12-20 08:26:07 +01:00
|
|
|
- cd docs
|
2016-02-16 20:39:06 +01:00
|
|
|
- if [[ $docs == "1" && $TRAVIS_OS_NAME == "osx" ]]; then make RST2HTML=rst2html.py; fi
|
2015-12-20 08:26:07 +01:00
|
|
|
- cd ..
|
|
|
|
|
2015-07-07 09:09:06 +02:00
|
|
|
- cd test
|
2016-10-08 18:29:46 +02:00
|
|
|
- bjam --hash -j3 warnings-as-errors=on invariant-checks=full variant=$variant -l900 $coverage_toolset $target $test_args
|
2015-12-20 02:27:57 +01:00
|
|
|
# if we're building with code coverage, report it as soon as possible
|
|
|
|
- if [[ $TRAVIS_OS_NAME == "linux" && $coverage == "1" ]]; then
|
|
|
|
codecov --root .. --gcov-exec gcov-4.8;
|
|
|
|
fi
|
2015-12-16 03:07:26 +01:00
|
|
|
|
2015-07-07 09:09:06 +02:00
|
|
|
- cd ../examples
|
2016-07-05 17:25:31 +02:00
|
|
|
- bjam --hash -j3 warnings-as-errors=on debug-iterators=on picker-debugging=on invariant-checks=full variant=$variant $coverage_toolset link=shared
|
2016-03-30 08:31:37 +02:00
|
|
|
- if [[ $lang == "cpp11" ]]; then
|
2016-07-05 17:25:31 +02:00
|
|
|
bjam --hash -j3 warnings-as-errors=on debug-iterators=on picker-debugging=on invariant-checks=full variant=$variant $coverage_toolset link=shared bt-get bt-get2;
|
2016-02-21 23:09:41 +01:00
|
|
|
fi
|
2015-09-23 18:13:00 +02:00
|
|
|
- cd ..
|
2015-12-16 03:07:26 +01:00
|
|
|
|
2017-02-25 20:09:11 +01:00
|
|
|
# run through autotools and ./configure to make sure it works
|
|
|
|
- 'if [[ "$autotools" == "1" ]]; then
|
|
|
|
./autotool.sh &&
|
|
|
|
export CXX=g++-5 &&
|
|
|
|
export CC=gcc-5 &&
|
|
|
|
export CXXFLAGS="-Werror -Wno-deprecated-declarations" &&
|
|
|
|
./configure --enable-debug --enable-encryption --enable-examples --enable-tests --enable-python-binding &&
|
|
|
|
make -j2;
|
|
|
|
fi'
|
|
|
|
|
2015-09-23 18:13:00 +02:00
|
|
|
# build libtorrent separately and install it in a temporary (well known) dir
|
|
|
|
# we have to do this because on linux the name of the python module is the same
|
|
|
|
# as the main library, so we can't stage them to the same directory
|
2016-07-05 17:25:31 +02:00
|
|
|
- bjam --hash -j3 warnings-as-errors=on link=shared debug-iterators=on picker-debugging=on invariant-checks=full variant=$variant $coverage_toolset install location=./lib
|
2015-12-16 03:07:26 +01:00
|
|
|
|
2015-09-23 18:13:00 +02:00
|
|
|
# here we specify the temporary lib dir as a path to look for the main library
|
2016-10-09 23:00:20 +02:00
|
|
|
# a binary built with sanitizer does not interact well with python
|
2017-02-07 23:26:34 +01:00
|
|
|
- cd bindings/python
|
2016-10-09 23:00:20 +02:00
|
|
|
- 'if [[ $lang != "sanitizer" ]]; then
|
2016-10-08 18:29:46 +02:00
|
|
|
bjam --hash -j3 warnings-as-errors=on debug-iterators=on picker-debugging=on invariant-checks=full variant=$variant $coverage_toolset stage_module libtorrent-link=shared install-type=LIB dll-path=../../lib;
|
|
|
|
LD_LIBRARY_PATH=../../lib DYLD_LIBRARY_PATH=../../lib python test.py;
|
|
|
|
fi'
|
2017-02-07 23:26:34 +01:00
|
|
|
- cd ../..
|
2015-12-16 03:07:26 +01:00
|
|
|
|
2015-12-20 08:26:07 +01:00
|
|
|
- cd simulation
|
2015-09-02 07:30:40 +02:00
|
|
|
- if [ $sim = "1" ]; then
|
2016-10-08 18:29:46 +02:00
|
|
|
bjam --hash -j2 crypto=built-in warnings-as-errors=on $coverage_toolset $test_args;
|
2015-08-09 06:56:37 +02:00
|
|
|
fi
|
2015-12-20 08:26:07 +01:00
|
|
|
- cd ..
|
2015-07-07 09:09:06 +02:00
|
|
|
- ccache --show-stats
|
2015-08-08 07:10:36 +02:00
|
|
|
|