mirror of
https://github.com/davatorium/rofi.git
synced 2024-10-27 05:23:18 -04:00
28 lines
478 B
YAML
28 lines
478 B
YAML
sudo: false
|
|
language: c
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libxinerama-dev
|
|
- autoconf
|
|
- automake
|
|
- make
|
|
- libxft-dev
|
|
- libx11-dev
|
|
- libpango1.0-dev
|
|
- libstartup-notification0-dev
|
|
- xvfb
|
|
- xdotool
|
|
|
|
compiler:
|
|
- gcc
|
|
|
|
before_install:
|
|
- autoreconf -i
|
|
|
|
script:
|
|
- ./configure --enable-gcov
|
|
- make
|
|
- make test
|
|
# to re-enable if xdotool is allowed.
|
|
- make test-x
|