Skip to content

Commit 5993cb9

Browse files
Disables pushing benchmark results for forks
It is not easily possible to share artifacts between workflows. Instead, we will simply not upload benchmark results from a PR from a fork. The only edge case here would be when such a PR introduces a new performance test. In that case, the first benchmarks for that test would only be uploaded from the first non-fork PR.
1 parent de846c5 commit 5993cb9

File tree

2 files changed

+1
-34
lines changed

2 files changed

+1
-34
lines changed

.github/workflows/tripy-l0.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -85,15 +85,9 @@ jobs:
8585
tool: 'pytest'
8686
output-file-path: ${{ github.workspace }}/tripy/benchmark.json
8787
github-token: ${{ secrets.GITHUB_TOKEN }}
88-
auto-push: false
88+
auto-push: ${{ !github.event.pull_request.head.repo.fork }}
8989
# Show alert with commit comment on detecting possible performance regression
9090
alert-threshold: '105%'
9191
comment-on-alert: true
9292
fail-on-alert: true
9393
gh-pages-branch: benchmarks
94-
95-
- name: Upload benchmark result
96-
uses: actions/upload-artifact@v4
97-
with:
98-
name: benchmark-results
99-
path: ${{ github.workspace }}/tripy/benchmark.json

.github/workflows/tripy-update-benchmark.yml

-27
This file was deleted.

0 commit comments

Comments
 (0)