diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2020-04-20 22:07:01 +0200 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2020-04-20 22:07:01 +0200 |
commit | aa81cd71486ee2503a8c5d49a00f361ea4cd109c (patch) | |
tree | 5766d5286701e9419d7c71172ebb21c2f101dd32 /.travis.yml | |
parent | 61652a42a0a55c7fd1f098e2f4f285b476839498 (diff) | |
download | tcpdump-aa81cd71486ee2503a8c5d49a00f361ea4cd109c.tar.gz |
Travis CI: Remove capture on architecture ppc64le (not working)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 4e9a8045..a2911489 100644 --- a/.travis.yml +++ b/.travis.yml @@ -147,7 +147,7 @@ script: - ./tcpdump -D - sudo ./tcpdump -J - sudo ./tcpdump -L - - if [ "$TRAVIS_OS_NAME" = linux ]; then sudo ./tcpdump -#n -c 10; fi + - if [ "$TRAVIS_OS_NAME" = linux -a "$TRAVIS_CPU_ARCH" != ppc64le ]; 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 |