File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 94
94
matrix :
95
95
target :
96
96
- x86_64-unknown-linux-gnu
97
+ - i686-unknown-linux-gnu
97
98
toolchain :
98
99
- stable
99
100
- " 1.66.0" # MSRV
@@ -105,8 +106,13 @@ jobs:
105
106
toolchain : ${{ matrix.toolchain }}
106
107
- name : Install SoftHSM
107
108
run : |
108
- sudo apt-get update -y -qq &&
109
- sudo apt-get install -y -qq libsofthsm2 &&
109
+ 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
110
116
mkdir /tmp/tokens
111
117
echo "directories.tokendir = /tmp/tokens" > /tmp/softhsm2.conf
112
118
- name : Install Rust target
You can’t perform that action at this time.
0 commit comments