summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: df3f77073e276d032daa9aa8a32394198fbc74e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
after_success:
  - coveralls -x c  --gcov-options '\-lp' -e '<built-in>'