diff options
author | Guy Harris <guy@alum.mit.edu> | 2020-05-14 09:50:19 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2020-05-14 09:51:04 -0700 |
commit | 20ecf68b9ed076df8c7db120e69a44663c4e6e82 (patch) | |
tree | ec099c138b5bb25226c28cbc475ff7067c0f1cb1 /.travis.yml | |
parent | e199894a8a745b65814db606deb0af77b6f147ff (diff) | |
download | tcpdump-20ecf68b9ed076df8c7db120e69a44663c4e6e82.tar.gz |
travis: see if this flavor of if: works.
Instead of having a list that includes an if: and other tests, have an
if: that combines the conditions with AND.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index f61c8995..53063394 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,14 +36,13 @@ compiler: # jobs: exclude: - - arch: ppc64le - os: osx - arch: s390x os: osx - arch: arm64 os: osx - compiler: gcc os: osx + - if: build = master AND arch = ppc64le AND os = osx cache: ccache |