2023-02-07 18:34:58 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
cd $GITHUB_WORKSPACE
|
|
|
|
|
2023-02-07 19:54:00 +01:00
|
|
|
echo "Downloading devkitA64 docker container..."
|
2023-02-07 18:34:58 +01:00
|
|
|
|
2023-02-07 19:54:00 +01:00
|
|
|
docker pull devkitpro/devkita64:latest || exit 1
|
2023-02-07 18:34:58 +01:00
|
|
|
|
2023-02-07 19:54:00 +01:00
|
|
|
echo "Downloading libsolder..."
|
2023-02-07 18:34:58 +01:00
|
|
|
|
2023-02-07 19:54:00 +01:00
|
|
|
rm -rf libsolder
|
2023-02-09 03:35:30 +01:00
|
|
|
git clone https://github.com/fgsfdsfgs/libsolder.git --depth=1 || exit 1
|
2023-02-07 18:34:58 +01:00
|
|
|
|
2023-02-07 19:54:00 +01:00
|
|
|
echo "Downloading HLSDK..."
|
2023-02-07 18:34:58 +01:00
|
|
|
|
2023-02-07 19:54:00 +01:00
|
|
|
rm -rf hlsdk-xash3d hlsdk-portable
|
2023-02-09 03:35:30 +01:00
|
|
|
git clone --recursive https://github.com/FWGS/hlsdk-portable || exit 1
|