premiere-libtorrent/.travis.yml

25 lines
691 B
YAML
Raw Normal View History

2015-06-05 02:15:57 +02:00
language: cpp
before_script:
- if [ $TRAVIS_OS_NAME == linux ]; then sudo add-apt-repository -y ppa:boost-latest/ppa; sudo apt-get update -qq; fi
- if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get install libboost1.54-all-dev; fi
- if [ $TRAVIS_OS_NAME == osx ]; then sudo brew install boost boost-build; fi
2015-06-05 06:15:22 +02:00
- echo "using gcc ;" >~/user-config.jam
- echo "using clang ;" >>~/user-config.jam
2015-06-05 02:15:57 +02:00
script:
- cd test
- bjam -j2 warnings=off -l600 $CC
- bjam -j2 variant=test_barebones warnings=off $CC
- cd ..
- bjam -j2 variant=test_debug warnings=off $CC
- bjam -j2 variant=test_release 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