Skip to content

Commit

Permalink
Benchmarks: Fix workflow.
Browse files Browse the repository at this point in the history
[only benchmarks]
  • Loading branch information
maleadt committed Dec 19, 2024
1 parent ba62282 commit b9610e3
Showing 1 changed file with 4 additions and 16 deletions.
20 changes: 4 additions & 16 deletions .github/workflows/Benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,16 @@ on:
pull_request_target:
branches:
- main
paths:
- "src/**/*"
- "lib/**/*"
- "ext/**/*"
- "perf/**/*"
- ".buildkite/**/*"
- "Project.toml"
push:
branches:
- main
paths:
- "src/**/*"
- "lib/**/*"
- "ext/**/*"
- "perf/**/*"
- ".buildkite/**/*"
- "Project.toml"

jobs:
benchmark:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Download Buildkite Artifacts
id: download
uses: EnricoMi/download-buildkite-artifact-action@v1
Expand All @@ -54,8 +42,8 @@ jobs:
output-file-path: ${{ steps.locate.outputs.path }}
benchmark-data-dir-path: "bench"
github-token: ${{ secrets.GITHUB_TOKEN }}
comment-always: ${{ github.event_name == 'pull_request' }}
comment-always: ${{ github.event_name == 'pull_request_target' }}
summary-always: true
alert-threshold: "125%"
fail-on-alert: false
auto-push: ${{ github.event_name != 'pull_request' }}
auto-push: ${{ github.event_name != 'pull_request_target' }}

0 comments on commit b9610e3

Please sign in to comment.