From: Guy Harris Date: Mon, 22 Jan 2018 02:14:34 +0000 (-0800) Subject: Only do the Coverity check build with autotools. X-Git-Tag: tcpdump-4.99-bp~1434 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/b4a37afc0905f111057122959682da8240913701 Only do the Coverity check build with autotools. We don't need to do it twice on the same code, and we don't yet support "make check" with CMake. --- diff --git a/.travis.yml b/.travis.yml index 2ed03c7e..1ee88948 100644 --- a/.travis.yml +++ b/.travis.yml @@ -92,7 +92,7 @@ script: - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then echo '$ make install [...]' && echo -n travis_fold:start:script.make_install; fi - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then PATH=$PATH make install; fi - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then echo -n travis_fold:end:script.make_install; fi - - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then make check; fi + - if [ "$COVERITY_SCAN_BRANCH" != 1 -a "$CMAKE" = no ]; then make check; fi - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then ./tcpdump -D; fi - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then ./tcpdump -J; fi - if [ "$COVERITY_SCAN_BRANCH" != 1 ]; then ./tcpdump --version; fi