1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-03 04:23:42 -05:00
rofi/.travis.yml

39 lines
691 B
YAML
Raw Normal View History

2015-12-01 17:34:34 -05:00
sudo: required
2015-12-01 17:31:18 -05:00
dist: trusty
2014-08-28 15:29:06 -04:00
language: c
2015-07-16 15:39:40 -04:00
addons:
apt:
2015-07-16 15:43:32 -04:00
packages:
- libxinerama-dev
- autoconf
- automake
- make
- libxft-dev
- libx11-dev
- libpango1.0-dev
2015-09-26 14:38:59 -04:00
- libcairo2-dev
2015-09-14 14:40:36 -04:00
- libstartup-notification0-dev
2015-07-16 15:43:32 -04:00
- xvfb
2015-11-08 04:39:31 -05:00
- discount
- xdotool
2016-01-05 10:46:43 -05:00
- fluxbox
2015-07-16 15:39:40 -04:00
2014-08-28 15:19:46 -04:00
compiler:
- gcc
before_install:
2015-07-16 15:43:32 -04:00
- autoreconf -i
2014-08-28 15:19:46 -04:00
2014-08-29 09:17:57 -04:00
script:
2015-07-16 15:43:32 -04:00
- ./configure --enable-gcov
- make
- make test
2015-07-16 15:47:53 -04:00
# to re-enable if xdotool is allowed.
2015-07-21 02:14:53 -04:00
- make test-x
2016-01-05 10:46:43 -05:00
- make test-x1
2015-12-31 13:04:38 -05:00
- gcov source/rofi.c
2015-11-08 04:35:43 -05:00
- make distcheck
2015-12-31 13:04:38 -05:00
after_success:
- bash <(curl -s https://codecov.io/bash)