Merge pull request #82 from bluca/travis_zmq

Travis: container infra, GCC, ZMQ builds
master
Oliver Gasser 2017-12-10 22:27:13 +01:00 committed by GitHub
commit 3745000cae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 4 deletions

View File

@ -1,9 +1,15 @@
language: cpp
compiler: clang
compiler:
- clang
- gcc
cache: ccache
sudo: false
addons:
apt:
sources:
- sourceline: 'deb http://download.opensuse.org/repositories/network:/messaging:/zeromq:/release-stable/xUbuntu_14.04/ ./'
key_url: 'http://download.opensuse.org/repositories/network:/messaging:/zeromq:/release-stable/xUbuntu_14.04/Release.key'
packages:
- cmake
- libboost-dev
@ -16,9 +22,10 @@ addons:
- libsystemd-journal-dev
- libsctp-dev
- libssl-dev
- libczmq-dev
env:
- DTLS="ON"
- DTLS="OFF"
- DTLS="ON" ZMQ="ON"
- DTLS="OFF" ZMQ="OFF"
script: cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DSUPPORT_JOURNALD=ON -DSUPPORT_DTLS="$DTLS" . && make && make test
script: cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DSUPPORT_JOURNALD=ON -DSUPPORT_DTLS="$DTLS" -DSUPPORT_ZMQ="$ZMQ" . && make && make test