mirror of
https://github.com/qbittorrent/qBittorrent
synced 2024-11-03 00:09:23 +01:00
60 lines
2.5 KiB
YAML
60 lines
2.5 KiB
YAML
language:
|
|
- cpp
|
|
|
|
env:
|
|
# use libtorrent 0.15.10
|
|
# uncomment when Travis doesn't use Ubuntu 12.04 LTS, which has libtorrent 0.15.10 as package
|
|
#- lt_source=from_dist gui=true
|
|
#- lt_source=from_dist gui=false
|
|
# use libtorrent 0.16.X from RC_0_16 svn branch
|
|
- lt_source=from_svnRC_0_16 gui=true
|
|
- lt_source=from_svnRC_0_16 gui=false
|
|
#- lt_source=from_svnRC_1_0 gui=true
|
|
#- lt_source=from_svnRC_1_0 gui=false
|
|
|
|
branches:
|
|
except:
|
|
- search_encoding_windows
|
|
- v2_9_x
|
|
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: change
|
|
|
|
before_install:
|
|
- shopt -s expand_aliases
|
|
- alias sudo="sudo "
|
|
# Using nprocs/2 sometimes may fail (gcc is killed by system), just use two threads
|
|
- alias make="colormake -j2 "
|
|
|
|
# Also setup a virtual display for after_success target when gui == true
|
|
- if ! $gui; then qbtconf="$qbtconf --disable-gui"; else export "DISPLAY=:99.0" && /sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16 ; fi
|
|
- ltconf=" --with-libgeoip=system"
|
|
|
|
- echo settings
|
|
- echo $lt_source
|
|
- echo $ltconf
|
|
- echo $gui
|
|
- echo $qbtconf
|
|
|
|
- sudo apt-get -qq update
|
|
# Travis can stall during heavy load if these packages are installed in one step - split the command
|
|
- sudo apt-get -qq install debhelper autoconf automake colormake libssl-dev libgeoip-dev
|
|
# uncomment when Travis doesn't use Ubuntu 12.04 LTS, which has libtorrent 0.15.10 as package
|
|
#- sudo apt-get -qq install libboost-dev libboost-filesystem-dev libboost-system-dev
|
|
- sudo apt-get -qq install libboost-dev libboost-system-dev
|
|
- sudo apt-get -qq install libqt4-dev
|
|
|
|
install:
|
|
#- if [[ "$lt_source" == "from_dist" ]]; then sudo apt-get -qq install libtorrent-rasterbar-dev; fi
|
|
- if [[ "$lt_source" == "from_svnRC_0_16" ]]; then cd .. && svn co svn://svn.code.sf.net/p/libtorrent/code/branches/RC_0_16 ./libtorrent && (cd libtorrent && ./autotool.sh && ./configure $ltconf && sudo make install) && sudo ldconfig /usr/local/lib && cd $TRAVIS_BUILD_DIR ; fi
|
|
#- if [[ "$lt_source" == "from_svnRC_1_0" ]]; then cd .. && svn co svn://svn.code.sf.net/p/libtorrent/code/branches/RC_1_0 ./libtorrent && (cd libtorrent && ./autotool.sh && ./configure $ltconf && sudo make install) && sudo ldconfig /usr/local/lib && cd $TRAVIS_BUILD_DIR ; fi
|
|
|
|
script:
|
|
- ./bootstrap.sh
|
|
- ./configure $qbtconf && sudo make install
|
|
|
|
after_success:
|
|
- if $gui ; then qbittorrent --version ; else qbittorrent-nox --version ; fi
|