2014-08-28 15:29:06 -04:00
|
|
|
language: c
|
2014-08-28 15:19:46 -04:00
|
|
|
compiler:
|
|
|
|
- gcc
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
- sudo apt-get update -qq
|
2015-02-02 09:08:44 -05:00
|
|
|
- sudo apt-get install -y libxinerama-dev autoconf automake make libxft-dev libx11-dev libpango1.0-dev xvfb xdotool
|
2014-08-29 06:20:22 -04:00
|
|
|
- sudo pip install cpp-coveralls
|
2014-08-28 15:19:46 -04:00
|
|
|
|
2014-08-29 09:17:57 -04:00
|
|
|
script:
|
2015-03-03 16:11:17 -05:00
|
|
|
- autoreconf -i && ./configure --enable-gcov && make && make test && make test-x
|
2015-02-02 09:08:44 -05:00
|
|
|
# - make clean && autoreconf -i && ./configure --disable-i3support && make
|
2014-08-29 06:20:22 -04:00
|
|
|
after_success:
|
2014-11-02 06:45:28 -05:00
|
|
|
- coveralls -x c --gcov-options '\-lp' -e '<built-in>'
|