2016-05-31 08:33:30 +00:00
|
|
|
sudo: required
|
2016-10-12 09:49:17 +00:00
|
|
|
dist: trusty
|
2016-10-11 14:20:19 +00:00
|
|
|
language: cpp
|
|
|
|
|
2018-04-07 22:49:51 +00:00
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- JOBS=4
|
2018-04-08 13:29:31 +00:00
|
|
|
- MAKEFLAGS="-j ${JOBS}"
|
2018-04-07 22:49:51 +00:00
|
|
|
- POLYBAR_BUILD_TYPE="compile"
|
|
|
|
|
2018-05-19 15:02:14 +00:00
|
|
|
# Build configurations can either not specify anything for 'addon' and use this
|
|
|
|
# default list of packages. Or they can pick and choose which package groups to
|
|
|
|
# install
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources: &sources
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
|
|
|
- &gcc
|
|
|
|
- g++-5
|
|
|
|
- gcc-5
|
|
|
|
- &clang
|
|
|
|
- libstdc++-5-dev
|
|
|
|
- &base_deps
|
|
|
|
- libxcb-ewmh-dev
|
|
|
|
- libxcb-icccm4-dev
|
|
|
|
- libxcb-image0-dev
|
|
|
|
- libxcb-randr0-dev
|
|
|
|
- libxcb-util0-dev
|
|
|
|
- python-xcbgen
|
|
|
|
- xcb-proto
|
|
|
|
- &optional_deps
|
|
|
|
- libxcb-xkb-dev
|
|
|
|
- libxcb-cursor-dev
|
|
|
|
- libxcb1-dev
|
|
|
|
- xutils-dev
|
|
|
|
- i3-wm
|
|
|
|
- libasound2-dev
|
|
|
|
- libpulse-dev
|
|
|
|
- libcairo2-dev
|
|
|
|
- libiw-dev
|
|
|
|
- libmpdclient-dev
|
|
|
|
|
2018-04-07 22:49:51 +00:00
|
|
|
script: source ${TRAVIS_BUILD_DIR}/common/travis/build.sh
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- compiler: clang
|
|
|
|
env: BUILD_TYPE=Release
|
2018-05-19 15:02:14 +00:00
|
|
|
addons: {apt: {sources: *sources, packages: [*clang, *base_deps, *optional_deps]}}
|
2018-04-07 22:49:51 +00:00
|
|
|
|
|
|
|
- compiler: clang
|
|
|
|
env: BUILD_TYPE=Debug
|
2018-05-19 15:02:14 +00:00
|
|
|
addons: {apt: {sources: *sources, packages: [*clang, *base_deps, *optional_deps]}}
|
2018-04-07 22:49:51 +00:00
|
|
|
|
|
|
|
- compiler: gcc
|
2018-04-08 22:49:36 +00:00
|
|
|
env: BUILD_TYPE=Debug POLYBAR_BUILD_TYPE=tests BUILD_TESTS=ON
|
2018-05-19 15:02:14 +00:00
|
|
|
addons: {apt: {sources: *sources, packages: [*gcc, *base_deps, *optional_deps]}}
|
2018-04-07 22:49:51 +00:00
|
|
|
script: ${TRAVIS_BUILD_DIR}/common/travis/tests.sh
|
2018-04-07 23:37:58 +00:00
|
|
|
after_success:
|
2018-04-16 18:03:34 +00: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 22:49:51 +00:00
|
|
|
|
|
|
|
- compiler: gcc
|
|
|
|
env: BUILD_TYPE=Release
|
2018-05-19 15:02:14 +00:00
|
|
|
addons: {apt: {sources: *sources, packages: [*gcc, *base_deps, *optional_deps]}}
|
2018-04-07 22:49:51 +00:00
|
|
|
|
|
|
|
- compiler: gcc
|
|
|
|
env: BUILD_TYPE=Debug
|
2018-05-19 15:02:14 +00:00
|
|
|
addons: {apt: {sources: *sources, packages: [*gcc, *base_deps, *optional_deps]}}
|
2016-05-26 19:10:37 +00:00
|
|
|
|
2016-06-15 03:32:35 +00:00
|
|
|
|
2016-10-11 14:20:19 +00:00
|
|
|
cache:
|
2018-04-08 13:16:03 +00:00
|
|
|
ccache: true
|
|
|
|
apt: true
|
2016-10-11 14:20:19 +00:00
|
|
|
directories:
|
2017-01-20 02:30:03 +00:00
|
|
|
- ${TRAVIS_BUILD_DIR}/deps/xcb-util-xrm
|
2016-10-11 14:20:19 +00:00
|
|
|
|
2016-06-15 03:32:35 +00:00
|
|
|
install:
|
2017-01-25 14:21:58 +00:00
|
|
|
- DEPS_DIR="${TRAVIS_BUILD_DIR}/deps"
|
|
|
|
- mkdir -p "${DEPS_DIR}" && cd "${DEPS_DIR}"
|
2016-11-19 07:55:46 +00:00
|
|
|
- source ${TRAVIS_BUILD_DIR}/common/travis/environment.sh
|
2017-01-20 02:30:03 +00:00
|
|
|
- source ${TRAVIS_BUILD_DIR}/common/travis/install_xcb_xrm.sh
|
2016-10-11 14:20:19 +00:00
|
|
|
|
2016-05-31 08:33:30 +00:00
|
|
|
before_script:
|
2016-11-19 07:55:46 +00:00
|
|
|
- source ${TRAVIS_BUILD_DIR}/common/travis/summary.sh
|
|
|
|
- source ${TRAVIS_BUILD_DIR}/common/travis/configure.sh
|
2016-05-31 08:33:30 +00:00
|
|
|
|
2018-04-08 13:22:22 +00:00
|
|
|
# Only fetch the newest 5 commits instead of 50
|
|
|
|
git:
|
|
|
|
depth: 5
|
|
|
|
|
2016-05-31 11:09:42 +00:00
|
|
|
notifications:
|
2016-11-19 07:31:06 +00:00
|
|
|
email: false
|
2016-05-31 11:09:42 +00:00
|
|
|
irc:
|
|
|
|
channels:
|
2016-11-19 05:22:44 +00:00
|
|
|
- "irc.freenode.org#polybar"
|
2016-05-31 12:53:37 +00:00
|
|
|
template:
|
2016-11-19 07:55:46 +00: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
|