forked from premiere/premiere-libtorrent
another travis attempt
This commit is contained in:
parent
393f98f9ee
commit
f11b054bae
|
@ -1,14 +1,16 @@
|
||||||
language: cpp
|
language: cpp
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- 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 == linux ]; then sudo add-apt-repository -y ppa:boost-latest/ppa; sudo apt-get update -qq; sudo apt-get install libboost1.54-all-dev; fi
|
||||||
- if [ $TRAVIS_OS_NAME == osx ]; then sudo brew install boost boost-build; fi
|
- if [ $TRAVIS_OS_NAME == osx ]; then sudo brew install boost boost-build; fi
|
||||||
|
- echo "using gcc ;" >~/user-config.jam
|
||||||
|
- echo "using clang ;" >>~/user-config.jam
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- cd test
|
- cd test
|
||||||
- bjam -j2 $CC
|
- bjam -j2 $CC
|
||||||
- bjam -j2 variant=test_debug $CC
|
- bjam -j2 variant=test_debug $CC
|
||||||
- bjam -j2 variant=test_relese $CC
|
- bjam -j2 variant=test_release $CC
|
||||||
- bjam -j2 variant=test_barebones $CC
|
- bjam -j2 variant=test_barebones $CC
|
||||||
|
|
||||||
compiler:
|
compiler:
|
||||||
|
|
6
Jamfile
6
Jamfile
|
@ -503,18 +503,18 @@ feature export-extra : off on : composite propagated ;
|
||||||
variant test_release
|
variant test_release
|
||||||
: release : <asserts>production <debug-symbols>on
|
: release : <asserts>production <debug-symbols>on
|
||||||
<invariant-checks>full <boost-link>shared
|
<invariant-checks>full <boost-link>shared
|
||||||
<export-extra>on <debug-iterators>on <boost>source <threading>multi
|
<export-extra>on <debug-iterators>on <threading>multi
|
||||||
;
|
;
|
||||||
variant test_debug : debug
|
variant test_debug : debug
|
||||||
: <crypto>openssl <logging>on <disk-stats>on
|
: <crypto>openssl <logging>on <disk-stats>on
|
||||||
<allocator>debug <debug-iterators>on
|
<allocator>debug <debug-iterators>on
|
||||||
<invariant-checks>full <boost-link>shared
|
<invariant-checks>full <boost-link>shared
|
||||||
<export-extra>on <debug-iterators>on <boost>source <threading>multi
|
<export-extra>on <debug-iterators>on <threading>multi
|
||||||
;
|
;
|
||||||
variant test_barebones : debug
|
variant test_barebones : debug
|
||||||
: <ipv6>off <dht>off <extensions>off <logging>off <boost-link>shared
|
: <ipv6>off <dht>off <extensions>off <logging>off <boost-link>shared
|
||||||
<deprecated-functions>off <invariant-checks>off
|
<deprecated-functions>off <invariant-checks>off
|
||||||
<export-extra>on <debug-iterators>on <boost>source <threading>multi
|
<export-extra>on <debug-iterators>on <threading>multi
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue