diff options
author | Guy Harris <guy@alum.mit.edu> | 2020-04-18 15:47:53 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2020-04-18 15:47:53 -0700 |
commit | cb33bfcc520a5113a796abd3f5828c9fcdb4e2d8 (patch) | |
tree | 2e2ff4df0260a2700783ab1546e34f33f94d2218 /.travis.yml | |
parent | f955ed131cd16b757b456c8f5bcd0a45a8524b55 (diff) | |
download | tcpdump-cb33bfcc520a5113a796abd3f5828c9fcdb4e2d8.tar.gz |
See if this cuts the build matrix down sufficiently.
macOS currently runs only on 64-bit x86, so eliminate all the other
architecture builds for it. (It may run on 64-bit ARM in the future,
but is unlikely ever to run on z/Architecture, and probably won't be
re-introduced to the world of the Power ISA, much less little-endian
Power ISA.)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 486cc9c4..dbf6e016 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,8 +3,8 @@ language: c arch: - amd64 - ppc64le -# - s390x -# - arm64 + - s390x + - arm64 os: - linux @@ -16,6 +16,15 @@ compiler: - gcc - clang +jobs: + exclude: + - arch: ppc64le + os: osx + - arch: s390x + os: osx + - arch: arm64 + os: osx + cache: ccache env: |