summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: a80ced0bcb8eef6ae79392245c4e724cc1cb4c26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: c
compiler:
  - gcc

before_install:
    -   sudo apt-get update -qq
    -   sudo apt-get install -y libxinerama-dev autoconf automake make libxft-dev libx11-dev libpango1.0-dev xvfb xdotool
    -   sudo pip install cpp-coveralls

script:
    - autoreconf -i && ./configure --enable-gcov && make &&  make test && make test-x
#    - make clean && autoreconf -i && ./configure --disable-i3support && make 
after_success:
  - coveralls -x c  --gcov-options '\-lp' -e '<built-in>'