diff options
author | Guy Harris <guy@alum.mit.edu> | 2020-05-14 03:34:35 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2020-05-14 03:34:35 -0700 |
commit | 5aac080f19b016ad62a4a51e4989d4b987861b92 (patch) | |
tree | 4d09a26be3b5a36ecd92bdf17d831a64116791df /.travis.yml | |
parent | 71f6909b74602272d2c3c8ef60e16c6ba1f741c2 (diff) | |
download | tcpdump-5aac080f19b016ad62a4a51e4989d4b987861b92.tar.gz |
travis: see whether putting the if: first works.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index 4b5c8622..98134c9d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -48,12 +48,12 @@ jobs: os: osx - compiler: gcc os: osx - - arch: ppc64le - if: branch == master - - arch: s390x - if: branch == master - - arch: arm64 - if: branch == master + - if: branch = master + arch: ppc64le + - if: branch = master + arch: s390x + - if: branch = master + arch: arm64 cache: ccache |