mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-09 06:37:53 +00:00
72b8246969
because they banned the ci server from accessing their pacman repo
19 lines
460 B
Bash
19 lines
460 B
Bash
#!/bin/bash
|
|
|
|
cd $GITHUB_WORKSPACE
|
|
|
|
echo "Downloading devkitA64 docker container..."
|
|
|
|
docker pull devkitpro/devkita64:latest || exit 1
|
|
|
|
echo "Downloading libsolder..."
|
|
|
|
rm -rf libsolder
|
|
git clone https://github.com/fgsfdsfgs/libsolder.git || exit 1
|
|
|
|
echo "Downloading HLSDK..."
|
|
|
|
# TODO: change to FWGS/hlsdk-portable.git when changes are merged in
|
|
rm -rf hlsdk-xash3d hlsdk-portable
|
|
git clone --recursive https://github.com/fgsfdsfgs/hlsdk-xash3d.git || exit 1
|