Update .gitea/workflows/build.yaml
Some checks failed
Build Project / build (windows-latest) (push) Waiting to run
Build Project / build (ubuntu-latest) (push) Failing after 18m1s

This commit is contained in:
2026-06-26 23:07:47 -04:00
parent f112c37e9e
commit a3b5e6abee

View File

@@ -26,19 +26,31 @@ jobs:
- name: Install Dependencies (Linux) - name: Install Dependencies (Linux)
if: runner.os == 'Linux' if: runner.os == 'Linux'
run: | run: |
apt-get update sudo apt-get update
apt-get install -y \ sudo apt-get install -y \
build-essential \ build-essential \
gcc \ gcc \
g++ \ g++ \
make \ make \
raylib-dev \ git \
cmake \
libasound2-dev \
mesa-common-dev \
libx11-dev \ libx11-dev \
libxrandr-dev \ libxrandr-dev \
libxinerama-dev \ libxinerama-dev \
libxcursor-dev \ libxcursor-dev \
libxi-dev \ libxi-dev \
libgl1-mesa-dev libgl1-mesa-dev \
libglu1-mesa-dev
- name: Build & Install Raylib (Linux)
if: runner.os == 'Linux'
run: |
git clone --depth 1 https://github.com/raysan5/raylib.git
cd raylib/src
make PLATFORM=PLATFORM_DESKTOP
sudo make install
- name: Install MSYS2 and Raylib (Windows) - name: Install MSYS2 and Raylib (Windows)
if: runner.os == 'Windows' if: runner.os == 'Windows'