diff options
author | Guy Harris <guy@alum.mit.edu> | 2020-05-13 22:03:47 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2020-05-13 22:03:47 -0700 |
commit | b0f9be3c70a3933aede27284edec405e3fcb9599 (patch) | |
tree | 2e863f7823c7af1b5925fed4bf7ddb2f233bd8cf /.travis.yml | |
parent | 85cbad2efe765d105da550592f7cfd1eab950fa0 (diff) | |
download | tcpdump-b0f9be3c70a3933aede27284edec405e3fcb9599.tar.gz |
Travis: try to suppress Coverity-branch builds on experimental platforms.
Those seem to hang, perhaps in the "run the Coverity script" part.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 04c8d554..b8981003 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,6 +34,10 @@ compiler: # compatibility with build scripts etc. that expect the compiler to be # "gcc", so don't bother doing "gcc" builds on macOS. # +# Furthermore, the Coverity-branch builds seem to time out on the +# non-x86 platforms, so suppress them as well. (Are they supported +# at all?) +# jobs: exclude: - arch: ppc64le @@ -44,6 +48,12 @@ jobs: os: osx - compiler: gcc os: osx + - arch: ppc64le + env: COVERITY_SCAN_BRANCH=1 + - arch: s390x + env: COVERITY_SCAN_BRANCH=1 + - arch: arm64 + env: COVERITY_SCAN_BRANCH=1 cache: ccache |