test9
This commit is contained in:
@@ -16,7 +16,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
echo "deb [signed-by=/usr/share/keyrings/ubuntu-archive-keyring.gpg] http://archive.ubuntu.com/ubuntu noble main" | sudo tee /tmp/only.list
|
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-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
|
- name: Build makeheaders
|
||||||
run: |
|
run: |
|
||||||
@@ -27,17 +27,32 @@ jobs:
|
|||||||
- name: Fetch libraries
|
- name: Fetch libraries
|
||||||
run: |
|
run: |
|
||||||
cd ${{ gitea.workspace }}/src/libraries
|
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
|
curl -L -o raylib.zip https://github.com/raysan5/raylib/archive/refs/heads/master.zip
|
||||||
unzip raylib.zip
|
unzip raylib.zip
|
||||||
mv raylib-master raylib
|
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 ../..
|
cd ../..
|
||||||
|
|
||||||
|
|
||||||
- name: Compile
|
- name: Compile
|
||||||
run: |
|
run: |
|
||||||
chmod +x ${{ gitea.workspace }}/compile.sh
|
chmod +x ${{ gitea.workspace }}/compile.sh
|
||||||
|
|||||||
Reference in New Issue
Block a user