premiere-libtorrent/.travis.yml

58 lines
1.4 KiB
YAML
Raw Normal View History

2015-06-05 02:15:57 +02:00
language: cpp
os:
- linux
- osx
env:
- variant=test_debug
- variant=test_release
- variant=test_barebones
compiler:
- gcc
- clang
2015-06-20 16:40:47 +02:00
# container-based builds
sudo: false
cache:
directories:
- $HOME/.ccache
2015-06-05 02:15:57 +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
- ppa:ubuntu-toolchain-r/test
packages:
- libboost1.55-all-dev
2015-08-08 07:03:13 +02:00
- boost-build
- python2.7-dev
- g++-4.8
2015-08-08 05:17:33 +02:00
before_install:
- git submodule update --init --recursive
install:
- if [ $TRAVIS_OS_NAME == "osx" ]; then sudo brew install boost boost-build python27-dev; fi
2015-08-08 07:03:13 +02: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'
- 'echo "using python : 2.7 ;" >> ~/user-config.jam'
2015-07-12 08:21:53 +02:00
- ccache -V && ccache --show-stats && ccache --zero-stats
- which $CXX
- ls -la `which $CXX`
2015-06-05 02:15:57 +02:00
script:
- cd test
2015-08-08 07:03:13 +02:00
- b2 -j 3 variant=$variant warnings=off -l900 $CC
- cd ../examples
2015-08-08 07:03:13 +02:00
- b2 -j 3 variant=$variant warnings=off $CC
- cd ../bindings/python
2015-08-08 07:03:13 +02:00
- b2 -j 3 variant=$variant warnings=off $CC stage_module
- LD_LIBRARY_PATH=. python test.py
2015-08-08 03:58:00 +02:00
- cd ../../simulation
2015-08-08 07:03:13 +02:00
- b2 -j 3 variant=$variant warnings=off $CC
- ccache --show-stats