CI: Fix Ubuntu package installation failure (#3901)

Co-authored-by: Jonathan Li <jonathan.li@hotmail.co.uk>
This commit is contained in:
Tyler Wilding 2020-11-06 07:11:31 -05:00 committed by GitHub
parent 0e60733537
commit ac9700f261
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,5 +119,9 @@ PCSX2_PACKAGES_STR=""
for i in "${PCSX2_PACKAGES[@]}"; do
PCSX2_PACKAGES_STR="${PCSX2_PACKAGES_STR} ${i}${ARCH}"
done
if [ "${PLATFORM}" == "x86" ]; then
echo "Installing workaround attempt"
sudo apt-get -y install libgcc-s1:i386
fi
echo "Will install the following packages for pcsx2 - ${PCSX2_PACKAGES_STR}"
sudo apt-get -y install ${PCSX2_PACKAGES_STR}