Skip to content

ci/cd: Add benchmarks on arm64 runners #9

ci/cd: Add benchmarks on arm64 runners

ci/cd: Add benchmarks on arm64 runners #9

Workflow file for this run

name: test
on:
push:
branches:
- "*"
jobs:
tests_amd64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
sudo apt install -y lld
rustup update stable
cargo --version
- run: |
make test
RUSTFLAGS="-C target-feature=-avx2" make test
tests_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 test