-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.travis.yml
40 lines (35 loc) · 835 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
sudo: required
dist: trusty
language: c
compiler:
- gcc
- clang
addons:
apt:
packages:
- autoconf
- automake
- make
- xsltproc
- docbook-xsl
- docbook-xml
- libglib2.0-dev
- libyajl-dev
- libnl-3-dev
- libnl-genl-3-dev
- libnl-route-3-dev
- libpulse-dev
- libmpdclient-dev
- libupower-glib-dev
install:
- sudo apt-get install -y libsensors4-dev
before_script:
- autoreconf -fi
- ./configure --disable-silent-rules --enable-debug --enable-mpd-input --enable-systemd-input
script:
- make && make check && make distcheck
after_failure:
- cat test-suite.log
- cat j4status-*/test-suite.log
notifications:
email: false