.github/workflows/base_benchmarks.yml #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Based on the tutorial https://bencher.dev/docs/how-to/github-actions/ | |
on: | |
push: | |
branches: main | |
paths: | |
- '**/*.rs' | |
- 'rust/Cargo.toml' | |
- 'rust/Cargo.lock' | |
schedule: | |
# Run once a month (random values for minute, hour, day; any month or day) | |
- cron: "3 1 4 * *" | |
# Allows you to run this workflow manually from the Actions tab on GitHub. | |
workflow_dispatch: | |
jobs: | |
benchmark_base_branch: | |
name: Continuous Benchmarking with Bencher | |
permissions: | |
checks: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
cache: 'pip' | |
- name: Installing sedpack pip package | |
run: | | |
pip install sedpack | |
- name: Prepare benchmarking data | |
working-directory: ./rust | |
run: bash benches/setup.sh | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- uses: bencherdev/bencher@main | |
- name: Track base branch benchmarks with Bencher | |
working-directory: ./rust | |
run: | | |
bencher run \ | |
--project sedpack \ | |
--token '${{ secrets.BENCHER_API_TOKEN }}' \ | |
--branch main \ | |
--testbed ubuntu-latest \ | |
--threshold-measure latency \ | |
--threshold-test t_test \ | |
--threshold-max-sample-size 64 \ | |
--threshold-upper-boundary 0.99 \ | |
--thresholds-reset \ | |
--err \ | |
--adapter rust_criterion \ | |
--github-actions '${{ secrets.GITHUB_TOKEN }}' \ | |
"cargo bench" |