We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b944a7d + 344ddc0 commit 227f913Copy full SHA for 227f913
.github/workflows/ci.yml
@@ -89,16 +89,24 @@ jobs:
89
90
tests-softhsm:
91
name: Run tests against SoftHSM
92
- runs-on: ubuntu-latest
93
continue-on-error: true
94
strategy:
95
matrix:
96
target:
97
- x86_64-unknown-linux-gnu
98
- i686-unknown-linux-gnu
+ - aarch64-unknown-linux-gnu
99
toolchain:
100
- stable
101
- "1.77" # MSRV
102
+ include:
103
+ - target: x86_64-unknown-linux-gnu
104
+ runner: ubuntu-latest
105
+ - target: i686-unknown-linux-gnu
106
107
+ - target: aarch64-unknown-linux-gnu
108
+ runner: ubuntu-24.04-arm
109
+ runs-on: ${{ matrix.runner }}
110
steps:
111
- uses: actions/checkout@v4
112
- name: Setup Rust toolchain
0 commit comments