From: Daniel Stenberg Date: Thu, 10 May 2018 06:56:46 +0000 (+0200) Subject: travis: add build using NSS X-Git-Tag: curl-7_60_0~20 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c3d7db4ecb2f8a0b22bd7cdf54ef10c119ebcc48;p=curl travis: add build using NSS Closes #2558 --- diff --git a/.travis.yml b/.travis.yml index 172e1fd52..6952f704f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,6 +35,7 @@ addons: - krb5-user - autopoint # for libpsl that needs autoreconf that uses gettext that needs it - libunistring-dev # for libidn2 neeed by libpsl + - libnss3-dev matrix: include: @@ -74,6 +75,10 @@ matrix: compiler: clang dist: trusty env: T=debug C="--with-mbedtls --without-ssl" + - os: linux + compiler: clang + dist: trusty + env: T=debug C="--with-nss --without-ssl" NOTESTS=1 CPPFLAGS="-isystem /usr/include/nss" - os: linux compiler: gcc dist: trusty @@ -236,7 +241,9 @@ script: if [ "$T" = "debug" ]; then ./configure --enable-debug --enable-werror $C make && make examples - make TFLAGS=-n test-nonflaky + if [ -z $NOTESTS ]; then + make TFLAGS=-n test-nonflaky + fi fi - | set -eo pipefail