File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 95
95
matrix :
96
96
target :
97
97
- x86_64-unknown-linux-gnu
98
+ - i686-unknown-linux-gnu
98
99
toolchain :
99
100
- stable
100
101
- " 1.77" # MSRV
@@ -107,8 +108,14 @@ jobs:
107
108
default : true
108
109
- name : Install SoftHSM
109
110
run : |
110
- sudo apt-get update -y -qq &&
111
- sudo apt-get install -y -qq libsofthsm2 &&
111
+ if [ "${{ matrix.target }}" = "i686-unknown-linux-gnu" ]; then
112
+ sudo dpkg --add-architecture i386
113
+ sudo apt-get update -y -qq
114
+ sudo apt-get install -y -qq gcc-multilib:i386 libsofthsm2:i386 gcc:i386
115
+ else
116
+ sudo apt-get update -y -qq
117
+ sudo apt-get install -y -qq libsofthsm2
118
+ fi
112
119
mkdir /tmp/tokens
113
120
echo "directories.tokendir = /tmp/tokens" > /tmp/softhsm2.conf
114
121
- name : Install Rust target
You can’t perform that action at this time.
0 commit comments