ci/cd: Add benchmarks on arm64 runners #3
This file contains hidden or 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: 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 |