2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-12-26 10:45:47 +01:00

scripts: gha: install deps on aarch64

This commit is contained in:
Alibek Omarov 2021-12-31 05:29:11 +03:00
parent f1dabf13a1
commit b7a32f6843

View File

@ -13,6 +13,11 @@ elif [ "$GH_CPU_ARCH" == "amd64" ]; then
sudo apt install libx11-dev libxext-dev x11-utils libgl1-mesa-dev libasound-dev libstdc++6 libfuse2 zlib1g
wget "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage" -O appimagetool.AppImage
elif [ "$GH_CPU_ARCH" == "aarch64" ]; then
sudo apt update
sudo apt install libx11-dev libxext-dev x11-utils libgl1-mesa-dev libasound-dev libstdc++6 libfuse2 zlib1g
wget "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-aarch64.AppImage" -O appimagetool.AppImage
else
exit 1
fi