Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check workflow against commits on master #10

Merged
merged 3 commits into from
May 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Build go-algorand
run: scripts/travis/build.sh
- name: Run benchmark
run: go test ./data/transactions/logic -bench 'BenchmarkUintMath' -benchtime 3s | tee benchmark_output.txt
run: go test ./data/transactions/logic -bench 'BenchmarkUintMath' | tee benchmark_output.txt
- name: Download previous benchmark data
uses: actions/cache@v1
with:
Expand All @@ -29,7 +29,6 @@ jobs:
output-file-path: benchmark_output.txt
# Where the previous data file is stored
github-token: ${{ secrets.GITHUB_TOKEN }}
# auto-push: true
# Show alert with commit comment on detecting possible performance regression
alert-threshold: '90%' # Test -> default is 200%
comment-on-alert: true
Expand Down