1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-10-27 05:23:18 -04:00
rofi/.travis.yml

99 lines
3.2 KiB
YAML
Raw Normal View History

2016-10-17 12:37:56 -04:00
sudo: required
dist: trusty
2014-08-28 15:29:06 -04:00
language: c
2016-10-17 12:37:56 -04:00
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
- secure: "Uodrn3x36plX2yk4+c7eimCuv7j6p6n1XCNbNEYxibRX77730eQMCVS0BvM40OgD7m5K9s2hIQaMV7EMj3qKuRmemULDVJVTgNd1fbx6t4BhYh+Hrf6FhsNcm9nFxvQQrdJAVSOwIAlrUilVFotDRt9qKqLwwZiBKIs5gBPcHQY="
2015-07-16 15:39:40 -04:00
addons:
2016-10-17 12:37:56 -04:00
coverity_scan:
project:
name: "DaveDavenport/rofi"
description: "Build submitted via Travis CI"
notification_email: qball@gmpclient.org
2016-10-17 14:19:58 -04:00
build_command_prepend: "autoreconf -i;./configure; make clean"
build_command: "make"
2016-10-17 12:37:56 -04:00
branch_pattern: coverity_scan
2015-07-16 15:39:40 -04:00
apt:
packages:
- autoconf
- automake
- make
2016-06-25 08:17:49 -04:00
- xutils-dev
- libpango1.0-dev
- libcairo2-dev
- libstartup-notification0-dev
- libxcb-ewmh-dev
- libxcb-icccm4-dev
- libxcb-util0-dev
- libxcb-xinerama0-dev
- libxcb-xkb-dev
2017-06-24 06:58:16 -04:00
- libxcb-randr0-dev
- libxcb1-dev
- xvfb
- discount
- xdotool
- fluxbox
2016-08-19 13:44:31 -04:00
- gdb
2016-10-18 16:54:38 -04:00
- lcov
2016-10-25 15:31:31 -04:00
- doxygen
2016-10-25 15:33:22 -04:00
- graphviz
- texinfo
- texi2html
2015-07-16 15:39:40 -04:00
2014-08-28 15:19:46 -04:00
compiler:
- gcc
2014-08-28 15:19:46 -04:00
before_install:
- sudo add-apt-repository -y 'deb http://archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse'
- sudo add-apt-repository -y 'deb http://debian.jpleau.ca/ jessie-backports main contrib non-free'
- sudo apt-get update -qq
2016-10-17 12:37:56 -04:00
- echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
# TODO: We install xkbcommon here, until Travis use an up-to-date enough Ubuntu
install:
- sudo apt-get install -y --force-yes libxkbcommon-dev libxkbcommon-x11-dev flex/trusty-backports libfl-dev/trusty-backports
- pip3 install meson
- wget https://github.com/ninja-build/ninja/releases/download/v1.7.2/ninja-linux.zip
- unzip ninja-linux.zip
- export PATH=$(pwd):$PATH
- git clone https://github.com/alobbs/doxy-coverage
2016-06-25 08:14:39 -04:00
- git clone --recursive https://github.com/Airblader/xcb-util-xrm.git
- cd xcb-util-xrm
2016-06-25 08:14:39 -04:00
- ./autogen.sh --prefix=/usr
- make
- sudo make install
- cd -
- git clone https://github.com/libcheck/check/ -b 0.11.0
- cd check
- autoreconf -i
2017-04-30 12:25:18 -04:00
- TEX="false" ./configure --prefix=/usr/
- make
2017-04-30 12:37:34 -04:00
- sudo make install
- cd -
before_script:
- meson build -Db_coverage=true
2014-08-28 15:19:46 -04:00
2014-08-29 09:17:57 -04:00
script:
- ninja -C build
- ninja -C build test
2017-03-31 15:08:52 -04:00
- ulimit -c unlimited
- ninja -C build test-x
- ninja -C build doc/html 2>&1 > doxygen.log
2016-11-15 16:12:53 -05:00
- test $(grep -c warning doxygen.log) -eq 0
- ./doxy-coverage/doxy-coverage.py build/doc/html/xml/
2015-12-31 13:04:38 -05:00
after_success:
- bash <(curl -s https://codecov.io/bash)
2016-10-17 12:37:56 -04:00
notifications:
webhooks:
urls:
- secure: "AqDM5SkWJPSBeCiyGdXzHYLnFCML/vKxWW/0wE00ocX+97Fa5ixeU7apMJ0OMZ0ZQVXG96xVtlJ513ZSpnRYHx6FF+Ivvw5pYeZjKHqtxThEhOueW1YynYWMX7HJrA4P19ollqRLrtsJqG6x7BhVEnIyhyu9eXtgj6hiI70F0SE="
on_success: change