Skip to content

Commit 24e5dc7

Browse files
committed
Fix installation of 32-bit deps
1 parent 75afc0f commit 24e5dc7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ jobs:
3636
with:
3737
submodules: recursive
3838
- name: Install dependencies
39-
run: apt-get install -y g++-multilib libc6-dev:i386 libstdc++-5-dev:i386 zlib1g:i386 libfuse2:i386
39+
run: |
40+
sudo dpkg --add-architecture i386
41+
sudo apt-get update
42+
sudo apt-get install -y g++-multilib libc6-dev:i386 libstdc++-5-dev:i386 zlib1g:i386 libfuse2:i386
4043
- name: Build AppImage
4144
run: bash -ex ci/build-appimage.sh
4245
- name: Archive artifacts

0 commit comments

Comments
 (0)