summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2020-05-12 20:22:42 -0700
committerGuy Harris <guy@alum.mit.edu>2020-05-12 20:22:42 -0700
commita7fe3014bfef14afeb6999c82579381e24ff54c3 (patch)
tree7b253c4a19940dfa341719b9e6fedca387949de5 /.travis.yml
parent25687e1a312a3bb63a6e8d7f0af0210a615e24a8 (diff)
downloadtcpdump-a7fe3014bfef14afeb6999c82579381e24ff54c3.tar.gz
Try adding output to the Coverity build to see if that fixes issues.
For some reason, on the 64-bit PowerPC/Power API, z/Architecture, and 64-bit ARM buildbots, the Coverity bilds time out after the "if this is a Coverity branch, quit before doing anything" step. Print a line, to see whether that satisfies Travis.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 9776136c..5789a5d7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -126,7 +126,7 @@ before_script:
- if [ "$BUILD_LIBPCAP" = yes ]; then (cd .. && echo '$ git clone [...] libpcap.git' && git clone --depth 3 --branch=master --quiet git://github.com/the-tcpdump-group/libpcap.git && cd libpcap && ./configure "--${REMOTE}-remote" --prefix=/tmp && make && make install); fi
script:
- - if [ "$COVERITY_SCAN_BRANCH" = 1 ]; then exit 0; fi
+ - if [ "$COVERITY_SCAN_BRANCH" = 1 ]; then echo "Coverity build - nothing more to do"; exit 0; fi
- if [ "$TRAVIS_OS_NAME" = osx ]; then OSX_SSL_DIR=$(ls /usr/local/Cellar/openssl); echo "OSX_SSL_DIR=$OSX_SSL_DIR"; fi
- touch .devel configure
- if [ "$CMAKE" = no ]; then echo '$ ./configure [...]' && echo travis_fold:start:script.configure; fi