dunst/.travis.yml
Nikos Tsipinakis 74c3330669 Add coveralls
Send test coverage statistics to coveralls to provide a visual way to
monitor the progress of our testing suite.
2017-12-19 06:38:24 +02:00

32 lines
604 B
YAML

addons:
apt:
packages:
- libdbus-1-dev
- libx11-dev
- libxrandr-dev
- libxinerama-dev
- libxss-dev
- libxdg-basedir-dev
- libglib2.0-dev
- libpango1.0-dev
- libcairo2-dev
- libnotify-dev
- libgtk-3-dev
dist: trusty
sudo: false
language: c
before_install:
- pip install --user cpp-coveralls
script:
- CFLAGS="-fprofile-arcs -ftest-coverage -Werror" make all dunstify test
- coveralls
compiler:
- gcc
- clang
notifications:
irc:
channels:
- "chat.freenode.net#dunst"
on_success: change
on_failure: always