summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 4184cd3b84611fd74e2bdb6355107e97229e5b1f (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 clean && autoreconf -i && ./configure --disable-i3support && make 
after_success:
  - coveralls -x c  --gcov-options '\-lp' -e '<built-in>'