mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-03 04:23:42 -05:00
14 lines
487 B
YAML
14 lines
487 B
YAML
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>'
|