dunst/.travis.yml
Nikos Tsipinakis 17e1dbf246 Use container-based builds with travis
Since we only use sudo for installing packages, start using the apt
travis addon for the installation in order to allow container-based
builds to be used for testing dunst which should theoretically have a
faster boot time.
2017-04-02 19:41:36 +03:00

32 lines
549 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
- libgtk2.0-dev
dist: trusty
sudo: false
language: c
script: make && make test
compiler:
- gcc
- clang
env:
- MULTIMON=xrandr
- MULTIMON=xinerama
- MULTIMON=none
notifications:
irc:
channels:
- "chat.freenode.net#dunst"
on_success: change
on_failure: always