Skip to content

Commit 54ae407

Browse files
committed
ci: Add arm64 build target
Signed-off-by: Jakub Jelen <[email protected]>
1 parent 1a864d3 commit 54ae407

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
@@ -88,16 +88,24 @@ jobs:
8888

8989
tests-softhsm:
9090
name: Run tests against SoftHSM
91-
runs-on: ubuntu-latest
9291
continue-on-error: true
9392
strategy:
9493
matrix:
9594
target:
9695
- x86_64-unknown-linux-gnu
9796
- i686-unknown-linux-gnu
97+
- aarch64-unknown-linux-gnu
9898
toolchain:
9999
- stable
100100
- "1.66.0" # MSRV
101+
include:
102+
- target: x86_64-unknown-linux-gnu
103+
runner: ubuntu-latest
104+
- target: i686-unknown-linux-gnu
105+
runner: ubuntu-latest
106+
- target: aarch64-unknown-linux-gnu
107+
runner: i686-unknown-linux-gnu
108+
runs-on: {{ matrix.runner }}
101109
steps:
102110
- uses: actions/checkout@v4
103111
- name: Setup Rust toolchain

0 commit comments

Comments
 (0)