We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c8ef2f commit 1a864d3Copy full SHA for 1a864d3
1 file changed
.github/workflows/ci.yml
@@ -94,6 +94,7 @@ jobs:
94
matrix:
95
target:
96
- x86_64-unknown-linux-gnu
97
+ - i686-unknown-linux-gnu
98
toolchain:
99
- stable
100
- "1.66.0" # MSRV
@@ -105,8 +106,13 @@ jobs:
105
106
toolchain: ${{ matrix.toolchain }}
107
- name: Install SoftHSM
108
run: |
- sudo apt-get update -y -qq &&
109
- sudo apt-get install -y -qq libsofthsm2 &&
+ sudo apt-get update -y -qq
110
+ if [ "{{ matrix.target }}" = "i686-unknown-linux-gnu" ]; then
111
+ sudo dpkg --add-architecture i386 &&
112
+ sudo apt-get install -y -qq gcc-multilib libsofthsm2:i386
113
+ else
114
+ sudo apt-get install -y -qq libsofthsm2
115
+ fi
116
mkdir /tmp/tokens
117
echo "directories.tokendir = /tmp/tokens" > /tmp/softhsm2.conf
118
- name: Install Rust target
0 commit comments