Skip to content

ci/cd: use matrix for multiplatform benchmarks #12

ci/cd: use matrix for multiplatform benchmarks

ci/cd: use matrix for multiplatform benchmarks #12

Workflow file for this run

name: test
on:
push:
branches:
- "*"
jobs:
tests_amd64:
runs-on: ubuntu-latest
container: rust:latest
steps:
- uses: actions/checkout@v4
- run: |
apt update && apt upgrade -y && apt install -y lld
cargo --version
- run: |
make test
RUSTFLAGS="-C target-feature=-avx2" make test
tests_arm64:
runs-on: ubuntu-24.04-arm
container: rust:latest
steps:
- uses: actions/checkout@v4
- run: |
apt update && apt upgrade -y && apt install -y lld
cargo --version
- run: make test