rofi/.travis.yml

102 lines
3.3 KiB
YAML
Raw Normal View History

2016-10-17 16:37:56 +00:00
sudo: required
dist: trusty
2014-08-28 19:29:06 +00:00
language: c
2016-10-17 16:37:56 +00: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 19:39:40 +00:00
addons:
2016-10-17 16:37:56 +00:00
coverity_scan:
project:
name: "DaveDavenport/rofi"
description: "Build submitted via Travis CI"
notification_email: qball@gmpclient.org
2016-10-17 18:19:58 +00:00
build_command_prepend: "autoreconf -i;./configure; make clean"
build_command: "make"
2016-10-17 16:37:56 +00:00
branch_pattern: coverity_scan
2015-07-16 19:39:40 +00:00
apt:
packages:
- autoconf
- automake
- make
2016-06-25 12:17:49 +00: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 10:58:16 +00:00
- libxcb-randr0-dev
- libxcb1-dev
- xvfb
- discount
- xdotool
- fluxbox
2017-07-27 14:51:07 +00:00
- xterm
2016-08-19 17:44:31 +00:00
- gdb
2016-10-18 20:54:38 +00:00
- lcov
2016-10-25 19:31:31 +00:00
- doxygen
2016-10-25 19:33:22 +00:00
- graphviz
- texinfo
- texi2html
- xfonts-base
2015-07-16 19:39:40 +00:00
2014-08-28 19:19:46 +00:00
compiler:
- gcc
2014-08-28 19:19:46 +00: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 16:37:56 +00: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
2017-09-07 18:08:43 +00:00
- sudo apt-get install -y --force-yes python3-pip
2017-09-07 18:15:23 +00:00
- pip3 install --user meson==0.41.2
- 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 12:14:39 +00:00
- git clone --recursive https://github.com/Airblader/xcb-util-xrm.git
- cd xcb-util-xrm
2016-06-25 12:14:39 +00: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 16:25:18 +00:00
- TEX="false" ./configure --prefix=/usr/
- make
2017-04-30 16:37:34 +00:00
- sudo make install
- cd -
before_script:
- meson build -Db_coverage=true
2014-08-28 19:19:46 +00:00
2014-08-29 13:17:57 +00:00
script:
- ninja -C build
- ninja -C build test
2017-03-31 19:08:52 +00:00
- ulimit -c unlimited
- ninja -C build test-x
- ninja -C build doc/html 2>&1 > doxygen.log
2016-11-15 21:12:53 +00:00
- test $(grep -c warning doxygen.log) -eq 0
- ./doxy-coverage/doxy-coverage.py build/doc/html/xml/
2015-12-31 18:04:38 +00:00
after_success:
- bash <(curl -s https://codecov.io/bash)
2016-10-17 16:37:56 +00:00
notifications:
webhooks:
urls:
- secure: "AqDM5SkWJPSBeCiyGdXzHYLnFCML/vKxWW/0wE00ocX+97Fa5ixeU7apMJ0OMZ0ZQVXG96xVtlJ513ZSpnRYHx6FF+Ivvw5pYeZjKHqtxThEhOueW1YynYWMX7HJrA4P19ollqRLrtsJqG6x7BhVEnIyhyu9eXtgj6hiI70F0SE="
on_success: change