1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-03 04:23:42 -05:00
rofi/.travis.yml
Dave Davenport de96149bed Add badges
2015-12-31 21:33:20 +01:00

36 lines
652 B
YAML

sudo: required
dist: trusty
language: c
addons:
apt:
packages:
- libxinerama-dev
- autoconf
- automake
- make
- libxft-dev
- libx11-dev
- libpango1.0-dev
- libcairo2-dev
- libstartup-notification0-dev
- xvfb
- discount
- xdotool
compiler:
- gcc
before_install:
- autoreconf -i
script:
- ./configure --enable-gcov
- make
- make test
# to re-enable if xdotool is allowed.
- make test-x
- gcov source/rofi.c
- make distcheck
after_success:
- bash <(curl -s https://codecov.io/bash)