premiere-libtorrent/.travis.yml

33 lines
914 B
YAML
Raw Normal View History

2015-06-05 02:15:57 +02:00
language: cpp
env:
- variant=test_debug
- variant=test_release
- variant=test_barebones
install:
- if [ $TRAVIS_OS_NAME == linux ]; then sudo add-apt-repository -y ppa:boost-latest/ppa; sudo apt-get update -qq; fi
2015-06-08 04:10:10 +02:00
- if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get install libboost1.54-all-dev python2.7-dev; fi
- if [ $TRAVIS_OS_NAME == osx ]; then sudo brew install boost boost-build python27-dev; fi
2015-06-05 06:15:22 +02:00
- echo "using gcc ;" >~/user-config.jam
- echo "using clang ;" >>~/user-config.jam
2015-06-08 05:00:16 +02:00
- echo -n "using python " >>~/user-config.jam
2015-06-08 05:41:41 +02:00
- echo -n ":" >>~/user-config.jam
- echo " 2.7 ;" >>~/user-config.jam
2015-06-05 02:15:57 +02:00
script:
- cd test
- bjam -j2 variant=$variant warnings=off -l900 $CC
- cd ../examples
- bjam -j2 variant=$variant warnings=off $CC
- cd ../bindings/python
- bjam -j2 variant=$variant warnings=off $CC
compiler:
- gcc
- clang
2015-06-05 02:15:57 +02:00
2015-06-05 02:27:13 +02:00
os:
- linux
- osx