premiere-libtorrent/.travis.yml

13 lines
327 B
YAML
Raw Normal View History

2015-06-05 02:15:57 +02:00
language: cpp
before_script:
2015-06-05 02:42:55 +02:00
- if [ $TRAVIS_OS_NAME == linux ]; then sudo add-apt-repository -y ppa:boost-latest/ppa; sudo apt-get update -qq; sudo apt-get install libboost1.54-dev; fi
- if [ $TRAVIS_OS_NAME == osx ]; then sudo brew install boost boost-build; fi
2015-06-05 02:15:57 +02:00
script:
2015-06-05 02:17:23 +02:00
- cd test; bjam -j2
2015-06-05 02:15:57 +02:00
2015-06-05 02:27:13 +02:00
os:
- linux
- osx