This commit is contained in:
milkwx3
2026-06-14 01:49:19 +03:00
parent 5d3b75f08d
commit 07f4f2a88a
+20 -5
View File
@@ -16,7 +16,7 @@ jobs:
run: |
echo "deb [signed-by=/usr/share/keyrings/ubuntu-archive-keyring.gpg] http://archive.ubuntu.com/ubuntu noble main" | sudo tee /tmp/only.list
sudo apt-get update -o Dir::Etc::sourcelist=/tmp/only.list -o Dir::Etc::sourceparts="-" -qq
sudo apt install -y build-essential cmake zip unzip make libxrandr-dev
sudo apt install -y build-essential cmake zip unzip make libxrandr-dev gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64
- name: Build makeheaders
run: |
@@ -27,17 +27,32 @@ jobs:
- name: Fetch libraries
run: |
cd ${{ gitea.workspace }}/src/libraries
git clone https://github.com/lsalzman/enet.git
git clone https://github.com/walterschell/Lua.git
curl -L -o enet.zip https://github.com/lsalzman/enet/archive/refs/heads/master.zip
unzip enet.zip
mv enet-master enet
rm enet.zip
curl -L -o Lua.zip https://github.com/walterschell/Lua/archive/refs/heads/master.zip
unzip Lua.zip
mv Lua-master Lua
rm Lua.zip
curl -L -o raylib.zip https://github.com/raysan5/raylib/archive/refs/heads/master.zip
unzip raylib.zip
mv raylib-master raylib
rm raylib.zip
curl -L -o yaml-cpp.zip https://github.com/jbeder/yaml-cpp/archive/refs/heads/master.zip
unzip yaml-cpp.zip
mv yaml-cpp-master yaml-cpp
rm yaml-cpp.zip
ls
cd ..
git clone https://github.com/jbeder/yaml-cpp.git
cd ../..
- name: Compile
run: |
chmod +x ${{ gitea.workspace }}/compile.sh