Skip to content

Commit

Permalink
Install required dependencies in 32-bit linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
null-dev committed Apr 5, 2021
1 parent ca52c61 commit 3b97c74
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ jobs:
x86_64-unknown-linux-gnu,
]
steps:
- name: Install gcc-multilib and 32-bit openssl
if: matrix.target == 'i686-unknown-linux-gnu'
run: |
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install gcc-multilib zlib1g-dev:i386 liblzma-dev:i386 libgcc1:i386 -y
- name: Setup rust toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -90,6 +96,7 @@ jobs:
steps:
- name: Install utils
run: |
sudo apt-get update
sudo apt-get install -y rename
- uses: actions/checkout@v2
with:
Expand Down

0 comments on commit 3b97c74

Please sign in to comment.