rofi/.travis.yml

15 lines
457 B
YAML
Raw Normal View History

2014-08-28 19:29:06 +00:00
language: c
2014-08-28 19:19:46 +00:00
compiler:
- clang
- gcc
before_install:
- sudo apt-get update -qq
2014-08-29 13:17:57 +00:00
- sudo apt-get install -y libxinerama-dev autoconf automake make libxft-dev libx11-dev libpango1.0-dev xvfb xdotool
2014-08-29 10:20:22 +00:00
- sudo pip install cpp-coveralls
2014-08-28 19:19:46 +00:00
2014-08-29 13:17:57 +00:00
script:
- autoreconf -i && ./configure --enable-gcov && make && make -C test/ test && ./test/run_errormsg_test.sh
2014-08-29 10:20:22 +00:00
after_success:
2014-08-29 13:32:46 +00:00
- coveralls -E **/*.h -e config.h --exclude lib --gcov-options '\-lp'