Skip to content

Benchmarks

Benchmarks #334

Workflow file for this run

name: Benchmarks
on:
schedule:
# Run M-F at 9:30 UTC (either 9:30 or 10:30 British time depending on season).
- cron: "30 9 * * 1-5"
permissions:
actions: read
contents: write
deployments: write
jobs:
bench:
runs-on: ubuntu-latest-large
if: ${{ github.ref_name == 'develop' }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: ./.github/actions/cleanup
- uses: ./.github/actions/setup-rust
- uses: ./.github/actions/setup-python
- name: Install Protoc
uses: arduino/setup-protoc@v3
- name: Bench - Vortex
run: cargo bench | tee bench.txt
- name: Store benchmark result
uses: benchmark-action/[email protected]
with:
name: Vortex Benchmarks
tool: cargo
github-token: ${{ secrets.GITHUB_TOKEN }}
output-file-path: bench.txt
summary-always: true
auto-push: true
fail-on-alert: false