Skip to content

Commit 344ddc0

Browse files
committed
ci: Add arm64 build target
Fixes: #285 Signed-off-by: Jakub Jelen <jjelen@redhat.com>
1 parent b944a7d commit 344ddc0

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)