]> granicus.if.org Git - icinga2/blob - .travis.yml
Release version 2.7.0
[icinga2] / .travis.yml
1 dist: trusty
2 sudo: false
3
4 language: cpp
5
6 cache: ccache
7
8 addons:
9   apt_packages:
10     - libboost-all-dev
11     - flex
12     - bison
13     - libssl-dev
14     - libpq-dev
15     - libmysqlclient-dev
16     - libedit-dev
17     - libyajl-dev
18     - libwxbase3.0-dev
19     - libwxgtk3.0-dev
20
21 before_script:
22   - mkdir build
23   - cd build
24   - cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/tmp/icinga2 -DICINGA2_PLUGINDIR=/tmp/icinga2/sbin
25
26 script:
27   - make
28   - make test
29   - make install
30   - /tmp/icinga2/sbin/icinga2 --version
31   - /tmp/icinga2/sbin/icinga2 daemon -C -DRunAsUser=$(id -u -n) -DRunAsGroup=$(id -g -n)