mirror of https://github.com/Icinga/icinga2.git
Use container-based builders for Travis CI
This commit is contained in:
parent
5588b8ed75
commit
275b488309
23
.travis.yml
23
.travis.yml
|
@ -1,18 +1,27 @@
|
|||
sudo: false
|
||||
|
||||
language: cpp
|
||||
|
||||
compiler:
|
||||
- gcc
|
||||
|
||||
before_install:
|
||||
- sudo apt-get update -qq
|
||||
- sudo apt-get install libboost-all-dev flex bison libssl-dev libpq-dev libmysqlclient-dev libedit-dev libyajl-dev
|
||||
addons:
|
||||
apt_packages:
|
||||
- ccache
|
||||
- libboost-all-dev
|
||||
- flex
|
||||
- bison
|
||||
- libssl-dev
|
||||
- libpq-dev
|
||||
- libmysqlclient-dev
|
||||
- libedit-dev
|
||||
- libyajl-dev
|
||||
|
||||
before_script:
|
||||
- mkdir build
|
||||
- cd build
|
||||
- cmake ..
|
||||
- export PATH="/usr/lib/ccache:$PATH"
|
||||
- cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/tmp/icinga2
|
||||
|
||||
script:
|
||||
- make
|
||||
- sudo make install
|
||||
- icinga2 --version
|
||||
- make && make test && make install && /tmp/icinga2/sbin/icinga2 --version
|
||||
|
|
Loading…
Reference in New Issue