summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2019-10-19 11:31:11 +0200
committerFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2019-10-19 15:05:30 +0200
commit17cfbf89aac06e57ad6dc3b80204efc792b4b4bf (patch)
treede9ce6acb6cdab05cd28932b64b134c02e8b4122 /.travis.yml
parent2af1e6ca55404f076c642c9e269251b3c1b228a8 (diff)
downloadtcpdump-17cfbf89aac06e57ad6dc3b80204efc792b4b4bf.tar.gz
Travis CI: Remove running capture on default interface on macOS
It's currently unreliable. Sometimes the default interface is 'utun0' and there is no packet to capture on it. This change should be temporary.
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 2b11f5c6..798afe5c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -119,7 +119,7 @@ script:
- ./tcpdump -D
- sudo ./tcpdump -J
- sudo ./tcpdump -L
- - sudo ./tcpdump -#n -c 10
+ - if [ "$TRAVIS_OS_NAME" = linux ]; then sudo ./tcpdump -#n -c 10; fi
- if [ "$CMAKE" = no ]; then make releasetar; fi
- echo '$ cat Makefile [...]'; echo travis_fold:start:script.cat_makefile
- if [ "$CMAKE" = no ]; then cat Makefile | sed -n '1,/DO NOT DELETE THIS LINE -- mkdep uses it/p'; fi