diff options
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 |