2015-06-05 02:15:57 +02:00
|
|
|
language: cpp
|
|
|
|
|
2016-06-19 08:32:12 +02:00
|
|
|
matrix:
|
|
|
|
include:
|
2016-06-27 07:00:44 +02:00
|
|
|
- env: variant=test_release coverage=1 toolset=gcc-coverage
|
|
|
|
- env: variant=test_debug sim=1 toolset=gcc
|
|
|
|
- env: variant=test_barebones toolset=gcc
|
|
|
|
- env: analyze=1 toolset=gcc
|
2016-06-19 08:32:12 +02:00
|
|
|
- os: osx
|
|
|
|
osx_image: xcode6.4
|
2016-06-27 07:00:44 +02:00
|
|
|
env: variant=test_release docs=1 toolset=darwin target=osx-tests
|
2016-06-19 08:32:12 +02:00
|
|
|
- os: osx
|
|
|
|
osx_image: xcode6.4
|
2016-06-27 07:00:44 +02:00
|
|
|
env: variant=test_debug toolset=darwin target=osx-tests
|
2016-06-19 08:32:12 +02:00
|
|
|
- os: osx
|
|
|
|
osx_image: xcode6.4
|
2016-06-27 07:00:44 +02:00
|
|
|
env: variant=test_barebones toolset=darwin target=osx-tests
|
2016-06-26 18:01:42 +02:00
|
|
|
- sudo: required
|
|
|
|
dist: trusty
|
2016-06-27 07:00:44 +02:00
|
|
|
env: arch=arm toolset=gcc-arm64
|
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-05-21 22:23:15 +02:00
|
|
|
- g++-5
|
2016-04-27 00:09:11 +02:00
|
|
|
- cppcheck
|
2015-06-05 03:58:02 +02:00
|
|
|
|
2015-08-08 05:17:33 +02:00
|
|
|
before_install:
|
2016-04-27 00:09:11 +02:00
|
|
|
|
2015-11-06 06:38:42 +01:00
|
|
|
- git submodule update --init --recursive
|
2016-04-27 00:09:11 +02:00
|
|
|
- 'if [[ $TRAVIS_OS_NAME == "osx" && "$variant" != "" ]]; then brew update > /dev/null && brew install --quiet ccache boost-build boost-python; fi'
|
2016-06-19 08:32:12 +02:00
|
|
|
- 'if [ "$docs" = "1" ]; then
|
2016-02-16 20:39:06 +01:00
|
|
|
brew install --quiet https://raw.githubusercontent.com/catap/homebrew/docutils/Library/Formula/docutils.rb;
|
|
|
|
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
|
|
|
|
2016-06-19 08:32:12 +02:00
|
|
|
- if [ "$coverage" == "1" ]; then
|
2015-12-16 03:07:26 +01:00
|
|
|
pip install --user codecov;
|
|
|
|
fi
|
2015-09-02 07:30:40 +02:00
|
|
|
- 'echo "using toolset: " ${toolset}'
|
2015-08-08 05:17:33 +02:00
|
|
|
|
2015-07-07 09:09:06 +02:00
|
|
|
install:
|
2016-04-27 00:09:11 +02:00
|
|
|
|
2016-05-21 22:23:15 +02:00
|
|
|
- touch ~/user-config.jam
|
2016-06-27 07:00:44 +02:00
|
|
|
- 'if [[ $toolset == "gcc" ]]; then
|
|
|
|
g++-5 --version;
|
|
|
|
echo "using gcc : : ccache g++-5 : <cxxflags>-std=c++11 ;" >> ~/user-config.jam;
|
2016-05-21 22:23:15 +02:00
|
|
|
fi'
|
2016-06-27 07:00:44 +02:00
|
|
|
- 'if [[ $toolset == "gcc-coverage" ]]; then
|
|
|
|
echo "using gcc : coverage : ccache g++-5 --coverage : <cxxflags>-std=c++11 <linkflags>--coverage ;" >> ~/user-config.jam;
|
|
|
|
fi'
|
|
|
|
- 'if [[ $toolset == "gcc-arm64" ]]; then
|
|
|
|
echo "using gcc : arm64 : ccache aarch64-linux-gnu-g++ : <cxxflags>-std=c++11 <cxxflags>-fsigned-char <linkflags>-lm ;" >> ~/user-config.jam;
|
|
|
|
fi;'
|
|
|
|
- 'echo "using darwin : : ccache clang++ : <cflags>-std=c11 <cxxflags>-std=c++11 <compileflags>-Wno-deprecated-declarations ;" >> ~/user-config.jam'
|
|
|
|
- 'echo "using python : 2.7 ;" >> ~/user-config.jam'
|
|
|
|
- if [ "$docs" == "1" ]; then rst2html.py --version; fi
|
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
|
2016-04-27 00:09:11 +02:00
|
|
|
- 'if [[ "$variant" != "" ]]; then ccache -V && ccache --show-stats && ccache --zero-stats; fi'
|
2015-06-05 02:15:57 +02:00
|
|
|
|
2016-06-27 07:00:44 +02:00
|
|
|
- 'if [ $arch == "arm" ]; then
|
2016-06-26 18:01:42 +02:00
|
|
|
cd test;
|
|
|
|
wget http://releases.linaro.org/components/toolchain/binaries/latest-5/aarch64-linux-gnu/gcc-linaro-5.3-2016.02-x86_64_aarch64-linux-gnu.tar.xz;
|
|
|
|
tar xf gcc-linaro-5.3-2016.02-x86_64_aarch64-linux-gnu.tar.xz;
|
|
|
|
export PATH=${PWD}/gcc-linaro-5.3-2016.02-x86_64_aarch64-linux-gnu/bin:${PATH};
|
2016-06-27 07:00:44 +02:00
|
|
|
aarch64-linux-gnu-g++ --version;
|
2016-06-26 18:01:42 +02:00
|
|
|
wget -O boost.zip http://pilotfiber.dl.sourceforge.net/project/boost/boost/1.55.0/boost_1_55_0.zip;
|
|
|
|
unzip -qq boost.zip;
|
|
|
|
export BOOST_ROOT=$PWD/boost_1_55_0;
|
|
|
|
sudo apt-get install -y qemu-user-static debootstrap;
|
|
|
|
sudo debootstrap --variant=minbase --arch arm64 --foreign --include=build-essential testing rootfs;
|
|
|
|
sudo cp /usr/bin/qemu-aarch64-static rootfs/usr/bin/;
|
|
|
|
sudo chroot rootfs /debootstrap/debootstrap --second-stage;
|
|
|
|
sudo chroot rootfs mount -t proc none /proc;
|
|
|
|
cd ..;
|
|
|
|
fi'
|
2015-12-16 03:07:26 +01:00
|
|
|
|
2016-06-26 18:01:42 +02:00
|
|
|
script:
|
2016-04-29 19:28:28 +02:00
|
|
|
|
|
|
|
- cd docs
|
2016-06-19 08:32:12 +02:00
|
|
|
- 'if [ "$docs" == "1" ]; then
|
2016-04-29 19:28:28 +02:00
|
|
|
make RST2HTML=rst2html.py;
|
2016-04-27 00:09:11 +02:00
|
|
|
fi'
|
2016-04-29 19:28:28 +02:00
|
|
|
- cd ..
|
2016-04-27 00:09:11 +02:00
|
|
|
|
|
|
|
# if variant is not set, we do not want to build anything
|
|
|
|
# if we are building with code coverage, report it as soon as possible
|
2016-04-29 19:28:28 +02:00
|
|
|
- cd test
|
2016-04-27 00:09:11 +02:00
|
|
|
- 'if [ "$variant" != "" ]; then
|
2016-06-23 07:23:59 +02:00
|
|
|
bjam -j3 warnings-as-errors=on variant=$variant -l900 $toolset $target test_natpmp &&
|
2016-06-19 08:32:12 +02:00
|
|
|
if [ "$coverage" == "1" ]; then
|
2016-05-21 22:23:15 +02:00
|
|
|
codecov --root .. --gcov-exec gcov-5;
|
2016-04-27 00:09:11 +02:00
|
|
|
fi;
|
|
|
|
fi'
|
2015-12-16 03:07:26 +01:00
|
|
|
|
2016-04-29 19:28:28 +02:00
|
|
|
- cd ../examples
|
|
|
|
- 'if [ "$variant" != "" ]; then
|
2016-05-20 07:32:32 +02:00
|
|
|
bjam -j3 warnings-as-errors=on variant=$variant picker-debugging=on $toolset link=shared;
|
2016-04-29 19:28:28 +02:00
|
|
|
fi'
|
|
|
|
- cd ..
|
|
|
|
|
2016-05-31 23:48:41 +02:00
|
|
|
- cd tools
|
|
|
|
- 'if [ "$variant" != "" ]; then
|
|
|
|
bjam -j3 warnings-as-errors=on variant=$variant picker-debugging=on $toolset link=shared;
|
|
|
|
fi'
|
|
|
|
- cd ..
|
|
|
|
|
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
|
2016-04-27 00:09:11 +02:00
|
|
|
# as the main library, so we cannot stage them to the same directory
|
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-04-27 00:09:11 +02:00
|
|
|
- 'if [ "$variant" != "" ]; then
|
2016-05-20 07:32:32 +02:00
|
|
|
bjam -j3 warnings-as-errors=on picker-debugging=on link=shared variant=$variant $toolset install location=./lib;
|
2016-04-29 19:28:28 +02:00
|
|
|
fi'
|
|
|
|
|
|
|
|
- cd bindings/python
|
|
|
|
- 'if [ "$variant" != "" ]; then
|
2016-05-20 07:32:32 +02:00
|
|
|
bjam -j3 warnings-as-errors=on variant=$variant picker-debugging=on $toolset stage_module libtorrent-link=shared install-type=LIB dll-path=../../lib &&
|
2016-04-27 00:09:11 +02:00
|
|
|
LD_LIBRARY_PATH=../../lib DYLD_LIBRARY_PATH=../../lib python test.py;
|
|
|
|
fi'
|
2016-04-29 19:28:28 +02:00
|
|
|
- cd ../..;
|
2015-12-16 03:07:26 +01:00
|
|
|
|
2016-04-27 00:09:11 +02:00
|
|
|
# simulation
|
2016-04-29 19:28:28 +02:00
|
|
|
- cd simulation
|
2016-06-06 04:13:01 +02:00
|
|
|
- 'if [[ "$variant" != "" && "$sim" == "1" ]]; then
|
2016-05-20 07:32:32 +02:00
|
|
|
bjam -j2 crypto=built-in warnings-as-errors=on $toolset;
|
2016-04-27 00:09:11 +02:00
|
|
|
fi'
|
2016-04-29 19:28:28 +02:00
|
|
|
- cd ..
|
2016-04-27 00:09:11 +02:00
|
|
|
|
|
|
|
# run cppcheck if enabled
|
|
|
|
- 'if [[ "$analyze" == "1" ]]; then
|
2016-06-19 08:32:12 +02:00
|
|
|
cppcheck --version &&
|
|
|
|
find src test examples tools -type f | grep ".*\.cpp$" >cppcheck.files &&
|
|
|
|
find simulation -type f -depth -2 | grep ".*\.cpp$" >>cppcheck.files &&
|
|
|
|
cppcheck -DTORRENT_USE_IPV6="1" -DTORRENT_USE_I2P="1"
|
|
|
|
-DTORRENT_USE_OPENSSL="1" -DTORRENT_USE_INVARIANT_CHECKS="1"
|
|
|
|
-DTORRENT_EXPENSIVE_INVARIANT_CHECKS="1" -DTORRENT_USE_ASSERTS="1"
|
|
|
|
-UTORRENT_DISABLE_MUTABLE_TORRENTS -UTORRENT_DISABLE_LOGGING
|
|
|
|
-UTORRENT_DEBUG_BUFFERS -UTORRENT_EXPORT_EXTRA
|
|
|
|
--suppress=preprocessorErrorDirective
|
|
|
|
--suppress=noConstructor
|
|
|
|
--suppress=syntaxError
|
|
|
|
--enable=style
|
|
|
|
--template "{file}({line}): {severity} ({id}): {message}"
|
|
|
|
--inline-suppr --force --std=c++11 -j2 -I include -I /usr/local/include
|
|
|
|
--file-list=cppcheck.files 2> cppcheck.txt;
|
|
|
|
if [ -s cppcheck.txt ]; then
|
|
|
|
echo " ======= CPPCHECK ERRORS =====";
|
|
|
|
cat cppcheck.txt;
|
|
|
|
exit 1;
|
|
|
|
fi;
|
|
|
|
fi'
|
2016-04-27 00:09:11 +02:00
|
|
|
|
|
|
|
- 'if [[ "$variant" != "" ]]; then ccache --show-stats; fi'
|
2015-08-08 07:10:36 +02:00
|
|
|
|
2016-06-26 18:01:42 +02:00
|
|
|
- cd test
|
|
|
|
- 'if [ $arch == "arm" ];
|
|
|
|
then
|
2016-06-27 07:00:44 +02:00
|
|
|
bjam arm-tests warnings-as-errors=on variant=test_arm $toolset target-os=linux link=static testing.launcher="sudo cp -R bin rootfs/; sudo chroot rootfs";
|
2016-06-26 18:01:42 +02:00
|
|
|
fi'
|
|
|
|
- cd ..
|