mirror of
https://github.com/zeromq/libzmq.git
synced 2025-01-19 00:46:05 +01:00
Problem: Travis does not build with NORM
Solution: install package and enable the build on some Linux jobs
This commit is contained in:
parent
189b551b40
commit
5311aa9cd9
@ -41,7 +41,7 @@ matrix:
|
||||
apt:
|
||||
packages:
|
||||
- valgrind
|
||||
- env: BUILD_TYPE=default CURVE=libsodium GSSAPI=enabled PGM=enabled
|
||||
- env: BUILD_TYPE=default CURVE=libsodium GSSAPI=enabled PGM=enabled NORM=enabled
|
||||
os: linux
|
||||
addons:
|
||||
apt:
|
||||
@ -50,11 +50,12 @@ matrix:
|
||||
key_url: 'http://download.opensuse.org/repositories/network:/messaging:/zeromq:/git-stable/xUbuntu_14.04/Release.key'
|
||||
packages:
|
||||
- libkrb5-dev
|
||||
- libnorm-dev
|
||||
- libpgm-dev
|
||||
- libsodium-dev
|
||||
- asciidoc
|
||||
- xmlto
|
||||
- env: BUILD_TYPE=default CURVE=libsodium DRAFT=enabled GSSAPI=enabled PGM=enabled
|
||||
- env: BUILD_TYPE=default CURVE=libsodium DRAFT=enabled GSSAPI=enabled PGM=enabled NORM=enabled
|
||||
os: linux
|
||||
addons:
|
||||
apt:
|
||||
@ -63,6 +64,7 @@ matrix:
|
||||
key_url: 'http://download.opensuse.org/repositories/network:/messaging:/zeromq:/git-stable/xUbuntu_14.04/Release.key'
|
||||
packages:
|
||||
- libkrb5-dev
|
||||
- libnorm-dev
|
||||
- libpgm-dev
|
||||
- libsodium-dev
|
||||
- env: BUILD_TYPE=default CURVE=libsodium DRAFT=enabled
|
||||
|
@ -44,6 +44,10 @@ if [ $BUILD_TYPE == "default" ]; then
|
||||
CONFIG_OPTS+=("--with-pgm=yes")
|
||||
fi
|
||||
|
||||
if [ -n "$NORM" ] && [ "$NORM" == "enabled" ]; then
|
||||
CONFIG_OPTS+=("--with-norm=yes")
|
||||
fi
|
||||
|
||||
if [ -z $DRAFT ] || [ $DRAFT == "disabled" ]; then
|
||||
CONFIG_OPTS+=("--enable-drafts=no")
|
||||
elif [ $DRAFT == "enabled" ]; then
|
||||
|
Loading…
x
Reference in New Issue
Block a user