rofi/.travis.yml

51 lines
1.2 KiB
YAML
Raw Normal View History

sudo: required
2015-12-01 22:31:18 +00:00
dist: trusty
2014-08-28 19:29:06 +00:00
language: c
2015-07-16 19:39:40 +00:00
addons:
apt:
packages:
- autoconf
- automake
- make
- libx11-dev
- libpango1.0-dev
- libcairo2-dev
- libstartup-notification0-dev
- libxcb-icccm4-dev
- libxcb-util0-dev
- libxcb-xinerama0-dev
- libxcb-xkb-dev
- libxcb1-dev
- xvfb
- discount
- xdotool
- fluxbox
2015-07-16 19:39:40 +00:00
2014-08-28 19:19:46 +00:00
compiler:
- gcc
2014-08-28 19:19:46 +00:00
before_install:
- sudo add-apt-repository -y 'deb http://debian.jpleau.ca/ jessie-backports main contrib non-free'
- sudo apt-get update -qq
# TODO: We install xkbcommon here, until Travis use an up-to-date enough Ubuntu
# TODO: We install libxcb-ewmh-dev here, until it is whitelisted again in Travis
install:
- sudo apt-get install -y --force-yes libxkbcommon-dev libxkbcommon-x11-dev libxcb-ewmh-dev
before_script:
- autoreconf -i
- ./configure --enable-gcov
2014-08-28 19:19:46 +00:00
2014-08-29 13:17:57 +00:00
script:
2015-07-16 19:43:32 +00:00
- make
- make check
2015-07-16 19:47:53 +00:00
# to re-enable if xdotool is allowed.
2015-07-21 06:14:53 +00:00
- make test-x
2016-01-05 15:46:43 +00:00
- make test-x1
2015-12-31 18:04:38 +00:00
- gcov source/rofi.c
2015-11-08 09:35:43 +00:00
- make distcheck
2015-12-31 18:04:38 +00:00
after_success:
- bash <(curl -s https://codecov.io/bash)