summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2020-05-13 15:41:30 -0700
committerGuy Harris <guy@alum.mit.edu>2020-05-13 15:41:30 -0700
commit85cbad2efe765d105da550592f7cfd1eab950fa0 (patch)
tree0ee628e38741820b60a6cf86cd32380bf7ea0b6a /.travis.yml
parenta7fe3014bfef14afeb6999c82579381e24ff54c3 (diff)
downloadtcpdump-85cbad2efe765d105da550592f7cfd1eab950fa0.tar.gz
Travis: More message tweaking.
Split the "Coverity build - nothing more to do" message and the exit into two lines; in some builds, not all of the message is being printed. Print a message unconditionally *after* that, because we're getting hangs on the offending buildbots *after* the "nothing more to do" Coverity build message is printed. (Perhaps those buildbots aren't detecting the exit?)
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 5789a5d7..04c8d554 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -126,7 +126,9 @@ 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 echo "Coverity build - nothing more to do"; exit 0; fi
+ - if [ "$COVERITY_SCAN_BRANCH" = 1 ]; then echo "Coverity build - nothing more to do"; fi
+ - if [ "$COVERITY_SCAN_BRANCH" = 1 ]; then exit 0; fi
+ - echo "One last message"
- 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