2016-05-31 04:33:30 -04:00
|
|
|
sudo: required
|
2016-10-12 05:49:17 -04:00
|
|
|
dist: trusty
|
2016-10-11 10:20:19 -04:00
|
|
|
language: cpp
|
|
|
|
|
2018-04-07 18:49:51 -04:00
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- JOBS=4
|
2018-04-08 09:29:31 -04:00
|
|
|
- MAKEFLAGS="-j ${JOBS}"
|
2018-04-07 18:49:51 -04:00
|
|
|
- POLYBAR_BUILD_TYPE="compile"
|
|
|
|
|
|
|
|
script: source ${TRAVIS_BUILD_DIR}/common/travis/build.sh
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- compiler: clang
|
|
|
|
env: BUILD_TYPE=Release
|
|
|
|
|
|
|
|
- compiler: clang
|
|
|
|
env: BUILD_TYPE=Debug
|
|
|
|
|
|
|
|
- compiler: gcc
|
2018-04-08 18:49:36 -04:00
|
|
|
env: BUILD_TYPE=Debug POLYBAR_BUILD_TYPE=tests BUILD_TESTS=ON
|
2018-04-07 18:49:51 -04:00
|
|
|
script: ${TRAVIS_BUILD_DIR}/common/travis/tests.sh
|
2018-04-07 19:37:58 -04:00
|
|
|
after_success:
|
2018-04-16 14:03:34 -04:00
|
|
|
- cd ${TRAVIS_BUILD_DIR}
|
|
|
|
- bash <(curl -s https://codecov.io/bash) -F unittests -a "-ap" -Z || echo "Codecov did not collect coverage reports"
|
2018-04-07 18:49:51 -04:00
|
|
|
|
|
|
|
- compiler: gcc
|
|
|
|
env: BUILD_TYPE=Release
|
|
|
|
|
|
|
|
- compiler: gcc
|
|
|
|
env: BUILD_TYPE=Debug
|
2016-05-26 15:10:37 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
2017-01-24 02:49:27 -05:00
|
|
|
- g++-5
|
|
|
|
- gcc-5
|
2016-12-15 13:16:31 -05:00
|
|
|
- i3-wm
|
|
|
|
- libasound2-dev
|
2017-09-25 22:42:09 -04:00
|
|
|
- libpulse-dev
|
2017-01-24 02:49:27 -05:00
|
|
|
- libcairo2-dev
|
2016-12-15 13:16:31 -05:00
|
|
|
- libiw-dev
|
|
|
|
- libmpdclient-dev
|
|
|
|
- libxcb-ewmh-dev
|
|
|
|
- libxcb-icccm4-dev
|
2017-01-19 20:54:06 -05:00
|
|
|
- libxcb-image0-dev
|
2016-12-15 13:16:31 -05:00
|
|
|
- libxcb-randr0-dev
|
|
|
|
- libxcb-util0-dev
|
|
|
|
- libxcb-xkb-dev
|
2017-09-06 03:07:49 -04:00
|
|
|
- libxcb-cursor-dev
|
2016-12-15 13:16:31 -05:00
|
|
|
- libxcb1-dev
|
|
|
|
- python-xcbgen
|
|
|
|
- xcb-proto
|
2017-01-19 21:30:03 -05:00
|
|
|
- xutils-dev
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-10-11 10:20:19 -04:00
|
|
|
cache:
|
2018-04-08 09:16:03 -04:00
|
|
|
ccache: true
|
|
|
|
apt: true
|
2016-10-11 10:20:19 -04:00
|
|
|
directories:
|
2017-01-19 21:30:03 -05:00
|
|
|
- ${TRAVIS_BUILD_DIR}/deps/xcb-util-xrm
|
2016-10-11 10:20:19 -04:00
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
install:
|
2017-01-25 09:21:58 -05:00
|
|
|
- DEPS_DIR="${TRAVIS_BUILD_DIR}/deps"
|
|
|
|
- mkdir -p "${DEPS_DIR}" && cd "${DEPS_DIR}"
|
2016-11-19 02:55:46 -05:00
|
|
|
- source ${TRAVIS_BUILD_DIR}/common/travis/environment.sh
|
2017-01-19 21:30:03 -05:00
|
|
|
- source ${TRAVIS_BUILD_DIR}/common/travis/install_xcb_xrm.sh
|
2016-10-11 10:20:19 -04:00
|
|
|
|
2016-05-31 04:33:30 -04:00
|
|
|
before_script:
|
2016-11-19 02:55:46 -05:00
|
|
|
- source ${TRAVIS_BUILD_DIR}/common/travis/summary.sh
|
|
|
|
- source ${TRAVIS_BUILD_DIR}/common/travis/configure.sh
|
2016-05-31 04:33:30 -04:00
|
|
|
|
2018-04-08 09:22:22 -04:00
|
|
|
# Only fetch the newest 5 commits instead of 50
|
|
|
|
git:
|
|
|
|
depth: 5
|
|
|
|
|
2016-05-31 07:09:42 -04:00
|
|
|
notifications:
|
2016-11-19 02:31:06 -05:00
|
|
|
email: false
|
2016-05-31 07:09:42 -04:00
|
|
|
irc:
|
|
|
|
channels:
|
2016-11-19 00:22:44 -05:00
|
|
|
- "irc.freenode.org#polybar"
|
2016-05-31 08:53:37 -04:00
|
|
|
template:
|
2016-11-19 02:55:46 -05:00
|
|
|
- "%{author} pushed #%{commit} \"%{commit_subject}\" to %{repository_name}/%{branch}"
|
|
|
|
- "Build #%{build_number} %{result} / %{build_url} (diff: %{compare_url})"
|
|
|
|
use_notice: true
|
|
|
|
on_success: change
|
|
|
|
on_failure: change
|