Skip to content

ci/cd: Add benchmarks on arm64 runners #3

ci/cd: Add benchmarks on arm64 runners

ci/cd: Add benchmarks on arm64 runners #3

Workflow file for this run

name: benchmarks
on:
push:
branches:
- "*"
jobs:
benchmarks-amd64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
sudo apt install -y lld
rustup update stable
cargo --version
- run: make bench
benchmarks-arm64:
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v4
- run: |
sudo apt install -y lld
rustup update stable
cargo --version
- run: make bench