Benchmark #11
Workflow file for this run
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
name: Benchmark | |
on: | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
benchmark-x86: | |
name: Benchmark X86 | |
runs-on: buildjet-2vcpu-ubuntu-2204 | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Benchmark | |
run: cargo bench --bench throughput --features bench-plot | |
- name: Benchmark (AVX2) | |
run: cargo bench --bench throughput --features bench-plot avx2 | |
- name: Commit & Push Plots | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Update Benchmark Plots | |
file_pattern: '*.svg' | |
commit_user_name: Benchmark Bot | |
commit_user_email: [email protected] | |
commit_author: Author <[email protected]> | |
benchmark-arm: | |
name: Benchmark ARM | |
needs: benchmark-x86 | |
runs-on: buildjet-2vcpu-ubuntu-2204-arm | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Benchmark | |
run: cargo bench --bench throughput --features bench-plot | |
- name: Commit & Push Plots | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Update Benchmark Plots | |
commit_options: '--amend --no-edit' | |
push_options: '--force' | |
skip_fetch: true | |
file_pattern: '*.svg' | |
commit_user_name: Benchmark Bot | |
commit_user_email: [email protected] | |
commit_author: Author <[email protected]> | |