bench: don't alert on CI benchmark changes
This commit is contained in:
parent
614fab7a15
commit
acede283e1
|
@ -47,18 +47,11 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: pyo3-bench
|
name: pyo3-bench
|
||||||
# What benchmark tool the output.txt came from
|
# What benchmark tool the output.txt came from
|
||||||
tool: 'cargo'
|
tool: "cargo"
|
||||||
# Where the output from the benchmark tool is stored
|
# Where the output from the benchmark tool is stored
|
||||||
output-file-path: output.txt
|
output-file-path: output.txt
|
||||||
# # Where the previous data file is stored
|
|
||||||
# external-data-json-path: ./cache/benchmark-data.json
|
|
||||||
# Workflow will fail when an alert happens
|
|
||||||
fail-on-alert: true
|
|
||||||
# GitHub API token to make a commit comment
|
# GitHub API token to make a commit comment
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
# Enable alert commit comment
|
|
||||||
comment-on-alert: true
|
|
||||||
alert-comment-cc-users: '@PyO3/pyo3'
|
|
||||||
auto-push: ${{ github.event_name != 'pull_request' }}
|
auto-push: ${{ github.event_name != 'pull_request' }}
|
||||||
|
|
||||||
pytest-benchmark:
|
pytest-benchmark:
|
||||||
|
@ -98,10 +91,7 @@ jobs:
|
||||||
uses: rhysd/github-action-benchmark@v1
|
uses: rhysd/github-action-benchmark@v1
|
||||||
with:
|
with:
|
||||||
name: pytest-bench
|
name: pytest-bench
|
||||||
tool: 'pytest'
|
tool: "pytest"
|
||||||
output-file-path: output.json
|
output-file-path: output.json
|
||||||
fail-on-alert: true
|
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
comment-on-alert: true
|
|
||||||
alert-comment-cc-users: '@PyO3/pyo3'
|
|
||||||
auto-push: ${{ github.event_name != 'pull_request' }}
|
auto-push: ${{ github.event_name != 'pull_request' }}
|
||||||
|
|
Loading…
Reference in New Issue