Skip to content

Commit

Permalink
try update benchmark workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
BrendanChou committed May 16, 2024
1 parent b086d32 commit 1d46838
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/protocol-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name: Protocol Benchmark
on: # yamllint disable-line rule:truthy
pull_request:
paths:
- 'protocol/**'
- 'protocol/lib/**'
push:
branches:
- main
- 'release/protocol/v[0-9]+.[0-9]+.x' # e.g. release/protocol/v0.1.x
- 'release/protocol/v[0-9]+.x' # e.g. release/protocol/v1.x
paths:
- 'protocol/**'
- 'protocol/lib/**'

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand All @@ -29,12 +29,7 @@ jobs:
with:
go-version: 1.22
- name: Run Benchmarks
run: make benchmark | tee benchmark_output.txt
- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
tool: 'go'
output-file-path: benchmark_output.txt
run: make benchmark | tee ./benchmark_output.txt
- name: Download previous benchmark data
uses: actions/cache@v4
with:
Expand All @@ -44,7 +39,8 @@ jobs:
uses: benchmark-action/github-action-benchmark@v1
with:
tool: 'go'
output-file-path: benchmark_output.txt
output-file-path: ./protocol/benchmark_output.txt
external-data-json-path: ./cache/benchmark-data.json
fail-on-alert: true
alert-threshold: '150%'
save-data-file: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}

0 comments on commit 1d46838

Please sign in to comment.