Commit 68ba6d17 authored by Luca Boccassi's avatar Luca Boccassi

Problem: Travis does not test PGM

Solution: enable option and install build-dependency for the jobs that
already install packages only, to minimise marginal cost in term of
runtime
parent f979ed4f
...@@ -41,7 +41,7 @@ matrix: ...@@ -41,7 +41,7 @@ matrix:
apt: apt:
packages: packages:
- valgrind - valgrind
- env: BUILD_TYPE=default CURVE=libsodium GSSAPI=enabled - env: BUILD_TYPE=default CURVE=libsodium GSSAPI=enabled PGM=enabled
os: linux os: linux
addons: addons:
apt: apt:
...@@ -50,10 +50,11 @@ matrix: ...@@ -50,10 +50,11 @@ matrix:
key_url: 'http://download.opensuse.org/repositories/network:/messaging:/zeromq:/git-stable/xUbuntu_14.04/Release.key' key_url: 'http://download.opensuse.org/repositories/network:/messaging:/zeromq:/git-stable/xUbuntu_14.04/Release.key'
packages: packages:
- libkrb5-dev - libkrb5-dev
- libpgm-dev
- libsodium-dev - libsodium-dev
- asciidoc - asciidoc
- xmlto - xmlto
- env: BUILD_TYPE=default CURVE=libsodium DRAFT=enabled GSSAPI=enabled - env: BUILD_TYPE=default CURVE=libsodium DRAFT=enabled GSSAPI=enabled PGM=enabled
os: linux os: linux
addons: addons:
apt: apt:
...@@ -62,6 +63,7 @@ matrix: ...@@ -62,6 +63,7 @@ matrix:
key_url: 'http://download.opensuse.org/repositories/network:/messaging:/zeromq:/git-stable/xUbuntu_14.04/Release.key' key_url: 'http://download.opensuse.org/repositories/network:/messaging:/zeromq:/git-stable/xUbuntu_14.04/Release.key'
packages: packages:
- libkrb5-dev - libkrb5-dev
- libpgm-dev
- libsodium-dev - libsodium-dev
- env: BUILD_TYPE=default CURVE=libsodium DRAFT=enabled - env: BUILD_TYPE=default CURVE=libsodium DRAFT=enabled
os: osx os: osx
......
...@@ -40,6 +40,10 @@ if [ $BUILD_TYPE == "default" ]; then ...@@ -40,6 +40,10 @@ if [ $BUILD_TYPE == "default" ]; then
CONFIG_OPTS+=("--with-libgssapi_krb5=yes") CONFIG_OPTS+=("--with-libgssapi_krb5=yes")
fi fi
if [ -n "$PGM" ] && [ "$PGM" == "enabled" ]; then
CONFIG_OPTS+=("--with-pgm=yes")
fi
if [ -z $DRAFT ] || [ $DRAFT == "disabled" ]; then if [ -z $DRAFT ] || [ $DRAFT == "disabled" ]; then
CONFIG_OPTS+=("--enable-drafts=no") CONFIG_OPTS+=("--enable-drafts=no")
elif [ $DRAFT == "enabled" ]; then elif [ $DRAFT == "enabled" ]; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment