diff options
author | Adin Scannell <ascannell@google.com> | 2021-01-07 01:15:20 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-01-07 01:17:10 -0800 |
commit | 776016ac6412006671a5dbccb5e9af21bf9b01f7 (patch) | |
tree | e0cdcaafec773ba8cfdcb8c69e63d058f506367a /.buildkite/pipeline.yaml | |
parent | fa8682da0fd43556ae0a405c02bac27e6d15a8e6 (diff) |
Fix native benchmarks.
PiperOrigin-RevId: 350509137
Diffstat (limited to '.buildkite/pipeline.yaml')
-rw-r--r-- | .buildkite/pipeline.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml index d03847800..ee993c46a 100644 --- a/.buildkite/pipeline.yaml +++ b/.buildkite/pipeline.yaml @@ -12,7 +12,7 @@ _templates: retry: automatic: false soft_fail: true - if: build.message =~ /benchmarks/ || build.branch == "master" + if: build.branch == "master" env: # BENCHMARKS_OFFICIAL is set from hooks/pre-command, based # on whether this is executing on the master branch. @@ -152,7 +152,7 @@ steps: label: ":fire: Benchmarks smoke test" command: make benchmark-platforms # Use the opposite of the benchmarks filter. - if: build.message !~ /benchmarks/ && build.branch != "master" + if: build.branch != "master" # Run all benchmarks. - <<: *benchmarks |