Skip to content

Commit 227f913

Browse files
authored
Merge pull request #297 from Jakuje/arm64
Run tests on arm64 architecture
2 parents b944a7d + 344ddc0 commit 227f913

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,16 +89,24 @@ jobs:
8989

9090
tests-softhsm:
9191
name: Run tests against SoftHSM
92-
runs-on: ubuntu-latest
9392
continue-on-error: true
9493
strategy:
9594
matrix:
9695
target:
9796
- x86_64-unknown-linux-gnu
9897
- i686-unknown-linux-gnu
98+
- aarch64-unknown-linux-gnu
9999
toolchain:
100100
- stable
101101
- "1.77" # MSRV
102+
include:
103+
- target: x86_64-unknown-linux-gnu
104+
runner: ubuntu-latest
105+
- target: i686-unknown-linux-gnu
106+
runner: ubuntu-latest
107+
- target: aarch64-unknown-linux-gnu
108+
runner: ubuntu-24.04-arm
109+
runs-on: ${{ matrix.runner }}
102110
steps:
103111
- uses: actions/checkout@v4
104112
- name: Setup Rust toolchain

0 commit comments

Comments
 (0)