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