We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4053102 commit d8b88adCopy full SHA for d8b88ad
1 file changed
.github/workflows/build.yml
@@ -30,14 +30,17 @@ jobs:
30
run: |
31
sudo dpkg --add-architecture i386
32
sudo apt-get update
33
- sudo apt-get install -y gcc-multilib g++-multilib libc6-dev-i386
+ sudo apt-get install -y gcc-multilib g++-multilib libc6-dev-i386 \
34
+ libssl-dev:i386 pkg-config:i386
35
36
- name: Install Rust toolchain
37
38
rustup install nightly
39
rustup target add i686-unknown-linux-gnu
40
41
- name: Build
42
+ env:
43
+ OPENSSL_DIR: /usr/lib/i386-linux-gnu
44
run: cargo build --release --target i686-unknown-linux-gnu
45
46
- name: Rename file
0 commit comments