Commit 2fb9e93c authored by somdoron's avatar somdoron

problem: ci doesn't build with nss

Solution: add an nss build to CI
parent 9be83349
......@@ -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
......
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