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 9494 matrix :
9595 target :
9696 - x86_64-unknown-linux-gnu
97+ - i686-unknown-linux-gnu
9798 toolchain :
9899 - stable
99100 - " 1.66.0" # MSRV
@@ -105,8 +106,13 @@ jobs:
105106 toolchain : ${{ matrix.toolchain }}
106107 - name : Install SoftHSM
107108 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:i386 libsofthsm2:i386
113+ else
114+ sudo apt-get install -y -qq libsofthsm2
115+ fi
110116 mkdir /tmp/tokens
111117 echo "directories.tokendir = /tmp/tokens" > /tmp/softhsm2.conf
112118 - name : Install Rust target
You can’t perform that action at this time.
0 commit comments