Skip to content

Commit afddf46

Browse files
committed
ci: add bench targets
1 parent 9c58da2 commit afddf46

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.github/workflows/CI.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,23 @@ on:
99

1010
jobs:
1111
bench:
12-
runs-on: ubuntu-24.04-arm
12+
strategy:
13+
matrix:
14+
settings:
15+
- target: aarch64-unknown-linux-gnu
16+
os: ubuntu-24.04-arm
17+
- target: aarch64-pc-windows-msvc
18+
os: windows-11-arm
19+
- target: aarch64-apple-darwin
20+
os: macos-latest
21+
fail-fast: false
22+
runs-on: ${{ matrix.settings.os }}
1323
steps:
1424
- uses: actions/checkout@v4
1525
- name: Setup Rust
1626
uses: dtolnay/rust-toolchain@stable
1727
with:
18-
targets: 'aarch64-unknown-linux-gnu'
28+
targets: ${{ matrix.settings.target }}
1929
env:
2030
CARGO_INCREMENTAL: '1'
2131
- name: Run benchmarks

0 commit comments

Comments
 (0)