Fix Ubuntu 22.04 CI build by installing libgcc-s1:i386 (#1716)

pull/1720/head
Disconnect3d 3 years ago committed by GitHub
parent d7c0e2aee7
commit 5d0e3ec067
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -25,7 +25,7 @@ install_apt() {
if uname -m | grep x86_64 > /dev/null; then if uname -m | grep x86_64 > /dev/null; then
sudo dpkg --add-architecture i386 || true sudo dpkg --add-architecture i386 || true
sudo apt-get update || true sudo apt-get update || true
sudo apt-get install -y libc6-dbg:i386 || true sudo apt-get install -y libc6-dbg:i386 libgcc-s1:i386 || true
fi fi
} }

Loading…
Cancel
Save