mirror of https://github.com/PCSX2/pcsx2.git
CI: Fix Ubuntu package installation failure (#3901)
Co-authored-by: Jonathan Li <jonathan.li@hotmail.co.uk>
This commit is contained in:
parent
0e60733537
commit
ac9700f261
|
@ -119,5 +119,9 @@ PCSX2_PACKAGES_STR=""
|
||||||
for i in "${PCSX2_PACKAGES[@]}"; do
|
for i in "${PCSX2_PACKAGES[@]}"; do
|
||||||
PCSX2_PACKAGES_STR="${PCSX2_PACKAGES_STR} ${i}${ARCH}"
|
PCSX2_PACKAGES_STR="${PCSX2_PACKAGES_STR} ${i}${ARCH}"
|
||||||
done
|
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}"
|
echo "Will install the following packages for pcsx2 - ${PCSX2_PACKAGES_STR}"
|
||||||
sudo apt-get -y install ${PCSX2_PACKAGES_STR}
|
sudo apt-get -y install ${PCSX2_PACKAGES_STR}
|
||||||
|
|
Loading…
Reference in New Issue