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 212bb69 commit a8ccd1fCopy full SHA for a8ccd1f
.github/workflows/ci.yml
@@ -95,6 +95,7 @@ jobs:
95
matrix:
96
target:
97
- x86_64-unknown-linux-gnu
98
+ - i686-unknown-linux-gnu
99
toolchain:
100
- stable
101
- "1.77" # MSRV
@@ -107,8 +108,13 @@ jobs:
107
108
default: true
109
- name: Install SoftHSM
110
run: |
- sudo apt-get update -y -qq &&
111
- sudo apt-get install -y -qq libsofthsm2 &&
+ sudo apt-get update -y -qq
112
+ if [ "${{ matrix.target }}" = "i686-unknown-linux-gnu" ]; then
113
+ sudo dpkg --add-architecture i386
114
+ sudo apt-get install -y -qq gcc-multilib:i386 libsofthsm2:i386 gcc:i386
115
+ else
116
+ sudo apt-get install -y -qq libsofthsm2
117
+ fi
118
mkdir /tmp/tokens
119
echo "directories.tokendir = /tmp/tokens" > /tmp/softhsm2.conf
120
- name: Install Rust target
0 commit comments