2015-07-29 07:23:12 +03:00
language : cpp
2013-07-02 07:55:58 +04:00
2015-09-01 09:48:10 +03:00
os :
- linux
- osx
2017-03-04 10:28:52 +03:00
osx_image : xcode7.3
2015-09-01 09:48:10 +03:00
2013-07-02 07:55:58 +04:00
env :
2015-03-13 10:01:20 +03:00
matrix :
2015-06-28 09:16:32 +03:00
# Uncomment when Travis upgraded "Ubuntu 12.04 LTS" to a newer version whose repo will have a more up-to-date libtorrent package
2015-12-07 05:14:39 +03:00
#- lt_branch=dist gui=true
#- lt_branch=dist gui=false
2017-03-20 16:50:28 +03:00
- lt_branch=RC_1_0 gui=true build_system=cmake
- lt_branch=RC_1_0 gui=false build_system=cmake
- lt_branch=RC_1_0 gui=true build_system=qmake
- lt_branch=RC_1_0 gui=false build_system=qmake
2017-01-20 17:11:18 +03:00
global :
- secure : "OI9CUjj4lTb0HwwIZU5PbECU3hLlAL6KC8KsbwohG8/O3j5fLcnmDsK4Ad9us5cC39sS11Jcd1kDP2qRcCuST/glVNhLkcjKkiQerOfd5nQ/qL4JYfz/1mfP5mdpz9jHKzpLUIG+TXkbSTjP6VVmsb5KPT+3pKEdRFZB+Pu9+J8="
- coverity_branch : coverity_scan
2013-07-27 12:30:13 +04:00
2017-03-20 16:50:28 +03:00
matrix :
allow_failures :
- env : lt_branch=RC_1_0 gui=true build_system=cmake
- env : lt_branch=RC_1_0 gui=false build_system=cmake
2013-07-27 12:30:13 +04:00
branches :
except :
- search_encoding_windows
- v2_9_x
notifications :
email :
on_success : change
2015-03-13 10:01:20 +03:00
on_failure : change
2013-07-27 12:30:13 +04:00
2016-11-11 18:54:54 +03:00
cache :
ccache : true
directories :
- $HOME/hombebrew_cache
2016-03-17 09:14:57 +03:00
# opt-in Ubuntu Trusty
dist : trusty
2017-04-19 12:23:50 +03:00
# container-based builds
sudo : false
2015-07-29 07:23:12 +03:00
addons :
coverity_scan :
project :
name : "qbittorrent/qBittorrent"
description : "Build submitted via Travis CI"
2016-03-17 09:14:57 +03:00
build_command_prepend : "./bootstrap.sh && ./configure $qbtconf"
2015-07-29 07:23:12 +03:00
build_command : make
branch_pattern : $coverity_branch
notification_email : sledgehammer999@qbittorrent.org
apt :
2017-03-20 16:24:05 +03:00
sources :
# sources list: https://github.com/travis-ci/apt-source-whitelist/blob/master/ubuntu.json
2017-05-31 16:42:24 +03:00
- ubuntu-toolchain-r-test
2017-03-20 16:24:05 +03:00
#- boost-latest
- sourceline : 'ppa:qbittorrent-team/qbittorrent-stable'
- sourceline : 'ppa:beineri/opt-qt551-trusty'
2017-03-20 16:50:28 +03:00
- sourceline : 'ppa:adrozdoff/cmake'
2015-07-29 07:23:12 +03:00
packages :
2017-04-19 12:23:50 +03:00
# packages list: https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise
2017-05-31 17:35:40 +03:00
- [ autoconf, automake, colormake]
- [ cmake, ninja-build]
2017-03-20 16:24:05 +03:00
- libssl-dev
2017-05-31 17:35:40 +03:00
- [ libboost-dev, libboost-system-dev]
2017-03-20 16:24:05 +03:00
- libtorrent-rasterbar-dev
2017-07-14 10:45:57 +03:00
- [ qt55base, qt55svg, qt55tools]
2017-05-31 16:42:24 +03:00
- [ gcc-6, g++-6]
2017-04-19 12:23:50 +03:00
2013-07-27 12:30:13 +04:00
before_install :
2016-03-17 09:14:57 +03:00
# only allow specific build for coverity scan, others will stop
2017-04-24 20:01:18 +03:00
- if [ "$TRAVIS_BRANCH" = "$coverity_branch" ] && ! [ "$TRAVIS_OS_NAME" = "linux" -a "$lt_branch" = "RC_1_0" -a "$gui" = true -a "$build_system" = "qmake" ]; then exit ; fi
2015-03-13 10:01:20 +03:00
2013-07-27 12:30:13 +04:00
- shopt -s expand_aliases
2015-07-29 07:23:12 +03:00
- alias make="colormake -j3" # Using nprocs/2 sometimes may fail (gcc is killed by system)
2016-03-17 09:14:57 +03:00
#- libt_path="$HOME/libt_install"
#- ltconf="$ltconf --prefix="$libt_path" --disable-geoip"
2015-07-29 07:23:12 +03:00
- qbt_path="$HOME/qbt_install"
2017-01-19 15:10:09 +03:00
- qbtconf="$qbtconf --prefix="$qbt_path" PKG_CONFIG_PATH="$libt_path/lib/pkgconfig":/opt/qt55/lib/pkgconfig:$PKG_CONFIG_PATH"
2016-03-17 09:14:57 +03:00
# options for specific branches
- if [ "$gui" = false ]; then qbtconf="$qbtconf --disable-gui" ; fi
- |
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
# setup virtual display for after_success target
if [ "$gui" = true ]; then 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 ;
2017-01-19 15:10:09 +03:00
# Qt 5
PATH=/opt/qt55/bin:${PATH}
2017-05-31 16:42:24 +03:00
if [ "$build_system" = "cmake" ]; then
COMPILER_VERSION=6
export CXX="${CXX}-${COMPILER_VERSION}" CC="${CC}-${COMPILER_VERSION}"
fi
2016-03-17 09:14:57 +03:00
fi
2013-07-27 12:30:13 +04:00
2016-03-17 09:14:57 +03:00
# print settings
2015-06-28 09:16:32 +03:00
- echo $lt_branch
2013-07-27 12:30:13 +04:00
- echo $gui
2017-03-20 16:50:28 +03:00
- echo $build_system
2015-06-28 09:16:32 +03:00
- echo $ltconf
2015-07-29 07:23:12 +03:00
- echo $qbtconf
2017-04-19 12:23:50 +03:00
2013-07-02 07:55:58 +04:00
install :
2017-04-19 12:23:50 +03:00
#- |
#if [ "$TRAVIS_OS_NAME" = "linux" ]; then
2016-03-17 09:14:57 +03:00
# build libtorrent from source
#if [ "$lt_branch" != "dist" ]; then
2017-04-19 12:23:50 +03:00
#cd "$HOME" && pwd && git clone --depth 1 https://github.com/arvidn/libtorrent.git --branch $lt_branch
#cd libtorrent && ./autotool.sh && ./configure $ltconf && make install
#fi
#fi
2016-03-17 09:14:57 +03:00
- |
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
2017-04-19 12:23:50 +03:00
# dependencies
brew update > /dev/null
brew outdated "pkg-config" || brew upgrade "pkg-config"
2017-07-12 19:54:24 +03:00
brew install colormake ccache zlib qt
PATH="/usr/local/opt/ccache/libexec:$PATH"
brew link --force zlib qt
2017-04-19 12:23:50 +03:00
wget https://builds.shiki.hu/homebrew/version
2016-11-11 18:54:54 +03:00
if ! cmp --quiet "version" "$HOME/hombebrew_cache/version" ; then
2017-04-19 12:23:50 +03:00
echo "Cached files are different from server. Downloading new ones."
2017-01-12 03:39:44 +03:00
# First delete old files
2017-04-19 12:23:50 +03:00
rm -r "$HOME/hombebrew_cache"
mkdir "$HOME/hombebrew_cache"
cp "version" $HOME/hombebrew_cache
cd "$HOME/hombebrew_cache"
wget https://builds.shiki.hu/homebrew/libtorrent-rasterbar.rb
2017-07-08 21:15:02 +03:00
wget https://builds.shiki.hu/homebrew/libtorrent-rasterbar-1.0.11+git20172003.8736a59adc.el_capitan.bottle.tar.gz
2016-11-11 18:54:54 +03:00
fi
2016-11-30 08:17:45 +03:00
2016-11-11 18:54:54 +03:00
# Copy custom libtorrent bottle to homebrew's cache so it can find and install it
# Also install our custom libtorrent formula by passing the local path to it
# These 2 files are restored from Travis' cache.
2017-07-08 21:15:02 +03:00
cp "$HOME/hombebrew_cache/libtorrent-rasterbar-1.0.11+git20172003.8736a59adc.el_capitan.bottle.tar.gz" "$(brew --cache)"
2017-04-19 12:23:50 +03:00
brew install "$HOME/hombebrew_cache/libtorrent-rasterbar.rb"
2016-03-17 09:14:57 +03:00
2017-03-20 16:50:28 +03:00
if [ "$build_system" = "cmake" ]; then
2017-07-12 19:54:24 +03:00
brew outdated cmake || brew upgrade cmake
brew install ninja
2017-04-19 12:23:50 +03:00
2017-04-11 14:24:38 +03:00
ln -s /usr/local/opt/qt/mkspecs /usr/local/mkspecs
ln -s /usr/local/opt/qt/plugins /usr/local/plugins
2017-03-20 16:50:28 +03:00
fi
MY_CMAKE_OPENSSL_HINT="-DOPENSSL_ROOT_DIR=/usr/local/opt/openssl/"
2017-04-19 12:23:50 +03:00
fi
- |
if [ "$TRAVIS_BRANCH" != "$coverity_branch" ]; then
export use_ccache=true
ccache -V && ccache --show-stats && ccache --zero-stats
2016-03-17 09:14:57 +03:00
fi
2013-07-02 07:55:58 +04:00
script :
2016-03-17 09:14:57 +03:00
- if [ "$TRAVIS_BRANCH" = "$coverity_branch" ]; then exit ; fi # skip usual build when running coverity scan
2016-05-03 21:14:31 +03:00
- |
2017-03-20 16:50:28 +03:00
cd "$TRAVIS_BUILD_DIR"
if [ "$build_system" = "cmake" ]; then
mkdir build
cd build
cmake -DGUI=${gui} -DCMAKE_INSTALL_PREFIX="$qbt_path" "$MY_CMAKE_OPENSSL_HINT" \
2017-05-31 16:06:53 +03:00
-G "Ninja" -DCMAKE_INSTALL_RPATH_USE_LINK_PATH=TRUE ..
BUILD_TOOL="ninja"
2017-03-20 16:50:28 +03:00
fi
if [ "$build_system" = "qmake" ]; then
./bootstrap.sh && ./configure $qbtconf
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
2017-04-19 12:23:50 +03:00
sed -i "" -e "s/^\(CC.*&&\).*$/\1 $CC/" src/Makefile # workaround for Qt & ccache: https://bugreports.qt.io/browse/QTBUG-31034
sed -i "" -e "s/^\(CXX.*&&\).*$/\1 $CXX/" src/Makefile
sed -i "" -e 's/^\(CXXFLAGS.*\)$/\1 -Wno-unused-local-typedefs -Wno-inconsistent-missing-override/' src/Makefile
2017-03-20 16:50:28 +03:00
fi
2017-05-31 16:06:53 +03:00
BUILD_TOOL="make"
2016-05-03 21:14:31 +03:00
fi
2017-05-31 16:06:53 +03:00
- $BUILD_TOOL && $BUILD_TOOL install
2015-03-13 10:01:20 +03:00
2013-07-27 12:30:13 +04:00
after_success :
2015-09-01 09:48:10 +03:00
- if [ "$gui" = true ]; then qbt_exe="qbittorrent" ; else qbt_exe="qbittorrent-nox" ; fi
2016-03-17 09:14:57 +03:00
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then cd "$qbt_path/bin" ; fi
2017-03-08 01:50:11 +03:00
- |
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
2017-07-12 19:54:24 +03:00
if [ "$build_system" = "qmake" ]; then
macdeployqt "$TRAVIS_BUILD_DIR/src/$qbt_exe.app"
cd "$TRAVIS_BUILD_DIR/src/$qbt_exe.app/Contents/MacOS"
else
cd "$qbt_path/$qbt_exe.app/Contents/MacOS"
fi
2017-03-08 01:50:11 +03:00
fi
2015-09-01 09:48:10 +03:00
- ./$qbt_exe --version
2015-03-13 10:01:20 +03:00
2015-07-29 07:23:12 +03:00
after_script :
2016-03-17 09:14:57 +03:00
- if [ "$use_ccache" = true ]; then ccache --show-stats ; fi