From d2762a95bfce2bf66bff1a1a12d2fb39d1ce2d0b Mon Sep 17 00:00:00 2001 From: Rafael Kitover Date: Sat, 10 May 2025 16:27:11 +0000 Subject: [PATCH] ci: add libsdl3-dev for Ubuntu runner Add the libsdl3 backport PPA for the Ubuntu CI runner because the latest Ubuntu image does not have it. Signed-off-by: Rafael Kitover --- .github/workflows/ubuntu-build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ubuntu-build.yml b/.github/workflows/ubuntu-build.yml index 1a216ae9..54f86d35 100644 --- a/.github/workflows/ubuntu-build.yml +++ b/.github/workflows/ubuntu-build.yml @@ -44,7 +44,10 @@ jobs: - name: Install Dependencies run: >- - bash installdeps; if [ "${{ matrix.build_compiler }}" = clang ]; then sudo apt -y install clang; fi + sudo add-apt-repository ppa:hrzhu/sdl3-backport + sudo apt update + bash installdeps + if [ "${{ matrix.build_compiler }}" = clang ]; then sudo apt -y install clang; fi - name: Install xvfb run: sudo apt -y install xvfb