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.
1 parent 1a864d3 commit 54ae407Copy full SHA for 54ae407
.github/workflows/ci.yml
@@ -88,16 +88,24 @@ jobs:
88
89
tests-softhsm:
90
name: Run tests against SoftHSM
91
- runs-on: ubuntu-latest
92
continue-on-error: true
93
strategy:
94
matrix:
95
target:
96
- x86_64-unknown-linux-gnu
97
- i686-unknown-linux-gnu
+ - aarch64-unknown-linux-gnu
98
toolchain:
99
- stable
100
- "1.66.0" # MSRV
101
+ include:
102
+ - target: x86_64-unknown-linux-gnu
103
+ runner: ubuntu-latest
104
+ - target: i686-unknown-linux-gnu
105
106
+ - target: aarch64-unknown-linux-gnu
107
+ runner: i686-unknown-linux-gnu
108
+ runs-on: {{ matrix.runner }}
109
steps:
110
- uses: actions/checkout@v4
111
- name: Setup Rust toolchain
0 commit comments