summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 512e03aa6f2e00ab55d3010b6514f18e58a31aee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
language: c
compiler:
  - clang
  - 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
    -   sudo pip install cpp-coveralls

script: autoreconf -i && ./configure && make &&  make -C test/ test
after_success:
  - coveralls --exclude lib --gcov-options '\-lp'