diff options
-rw-r--r-- | .travis.yml | 9 |
1 files changed, 8 insertions, 1 deletions
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: @@ -75,6 +76,10 @@ matrix: 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 env: T=iconv @@ -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 |