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 <rkitover@gmail.com>
This commit is contained in:
Rafael Kitover 2025-05-10 16:27:11 +00:00
parent 10a4b5dc71
commit d2762a95bf
No known key found for this signature in database
GPG Key ID: 08AB596679D86240
1 changed files with 4 additions and 1 deletions

View File

@ -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