summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2018-05-10 12:12:41 +0200
committerDaniel Stenberg <daniel@haxx.se>2018-05-10 12:12:41 +0200
commit3c47ebc80ffdb7d2df8441264a6694083537a2c5 (patch)
tree3c3fee571f062f7bc5c75c769ec0a9ef39800aa7
parenta6370d9ca06b5ae154f4e0f2eafe7d4272e36ba4 (diff)
downloadcurl-bagder/travis-nss.tar.gz
fixup travis: disable tests completely for NSS buildsbagder/travis-nss
-rw-r--r--.travis.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 4d84d5894..d9b36a7ca 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -78,7 +78,7 @@ matrix:
- os: linux
compiler: clang
dist: trusty
- env: T=debug C="--with-nss --without-ssl"
+ env: T=debug C="--with-nss --without-ssl" NOTESTS=1
- os: linux
compiler: gcc
dist: trusty
@@ -241,7 +241,9 @@ script:
if [ "$T" = "debug" ]; then
./configure --enable-debug $C
make && make examples
- make TFLAGS=-n test-nonflaky
+ if [ -z $NOTESTS ]; then
+ make TFLAGS=-n test-nonflaky
+ fi
fi
- |
set -eo pipefail