mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 10:33:52 +01:00
problem: ci doesn't build with nss
Solution: add an nss build to CI
This commit is contained in:
parent
9be8334938
commit
2fb9e93cfa
@ -44,6 +44,13 @@ matrix:
|
||||
- env: BUILD_TYPE=default CURVE=tweetnacl IPv6=ON
|
||||
os: linux
|
||||
dist: precise
|
||||
- env: BUILD_TYPE=default CURVE=tweetnacl USE_NSS=yes
|
||||
os: linux
|
||||
dist: precise
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- libnss3-dev
|
||||
- env: BUILD_TYPE=coverage CURVE=tweetnacl DRAFT=enabled
|
||||
os: linux
|
||||
addons:
|
||||
|
@ -24,6 +24,10 @@ if [ $BUILD_TYPE == "default" ]; then
|
||||
CONFIG_OPTS+=("LDFLAGS=-fuse-ld=gold")
|
||||
fi
|
||||
|
||||
if [ $USE_NSS == "yes" ]; then
|
||||
CONFIG_OPTS+=("--with-nss")
|
||||
fi
|
||||
|
||||
if [ -z $CURVE ]; then
|
||||
CONFIG_OPTS+=("--disable-curve")
|
||||
elif [ $CURVE == "libsodium" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user