diff options
author | Guy Harris <guy@alum.mit.edu> | 2020-04-18 20:44:55 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2020-04-18 20:44:55 -0700 |
commit | be07cc25d64fd75b5a6c01bb22783e0d2e44f9cf (patch) | |
tree | 8c42c9fbed2497b09b2e61c9aa25e9d518138e6f /.travis.yml | |
parent | 5a21b240867cead83e101c7359d0cd40900c2e5e (diff) | |
download | tcpdump-be07cc25d64fd75b5a6c01bb22783e0d2e44f9cf.tar.gz |
Only do 64-bit x86 Coverity build.
If we're doing a Coverity build, only do it once. Now that we're
building for multiple instruction sets, we need to check the instruction
set to ensure that.
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 8051624e..afa7a531 100644 --- a/.travis.yml +++ b/.travis.yml @@ -47,7 +47,7 @@ env: - secure: "DwUeukcRGl1vXNZDDt2237zCA58ZzmzWpCkPcb/Hpeh8OvRw1eBZJiu4L8iD2qtY4A/dPDvOeBiml5MF6bVri9Dui1yPkvkvFqIXzbK5CWS6Ye+NgSBNMwqnAjhTMv/x8I4Bvy9IhDGwj/2JXVUvjBddRMLRyr/ag+MDRB1IVAI=" # Coverity run condition (avoid matrix multiple runs), need customized # build script. Need an update if new matrix cases. - - coverity_scan_run_condition='"$TRAVIS_OS_NAME" = linux -a "$CC" = gcc -a "$REMOTE" = enable -a "$CMAKE" = no -a "$CRYPTO" = yes -a "$BUILD_LIBPCAP" = yes' + - coverity_scan_run_condition='"$TRAVIS_CPU_ARCH"" = amd64 -a "$TRAVIS_OS_NAME" = linux -a "$CC" = gcc -a "$REMOTE" = enable -a "$CMAKE" = no -a "$CRYPTO" = yes -a "$BUILD_LIBPCAP" = yes' # Coverity script test mode (if true no uploading, avoid reaching the quota) # usual processing: false. - coverity_scan_script_test_mode=false |