From 4b42480f74705391769111810feaf55c25ca7e9b Mon Sep 17 00:00:00 2001 From: sledgehammer999 Date: Fri, 26 Jul 2013 23:23:39 +0300 Subject: [PATCH] Fix Travis CI to build against libtorrent 0.16.x instead. --- .travis.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 57927ba04..dd4f7d458 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,10 +12,12 @@ language: env: # linux +# libtorrent 0.15.10 - lt=APT debug=false gui=true +- lt=APT debug=false gui=false +# libtorrent 0.16.x - lt=repo debug=false gui=true -- lt=repo debug=true gui=true -- lt=repo debug=true gui=false +- lt=repo debug=false gui=false install: # linux, osx @@ -40,7 +42,7 @@ install: - sudo apt-get -qq update - sudo apt-get -qq install debhelper libboost-dev libboost-filesystem-dev libboost-system-dev libqt4-dev qconf colormake - if [[ "$lt" == "APT" ]]; then sudo apt-get -qq install libtorrent-rasterbar-dev; fi -- if [[ "$lt" == "repo" ]]; then sudo apt-get -qq build-dep libtorrent-rasterbar-dev && git clone git://github.com/mirror/libtorrent.git && (cd libtorrent && ./autotool.sh && ./configure $ltc && sudo make install); fi +- if [[ "$lt" == "repo" ]]; then sudo apt-get -qq build-dep libtorrent-rasterbar-dev && svn checkout svn://svn.code.sf.net/p/libtorrent/code/branches/RC_0_16 && (cd RC_0_16 && ./autotool.sh && ./configure $ltc && sudo make install); fi # osx # - export MAKEFLAGS="-j 4"