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:
parent
10a4b5dc71
commit
d2762a95bf
|
@ -44,7 +44,10 @@ jobs:
|
||||||
|
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
run: >-
|
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
|
- name: Install xvfb
|
||||||
run: sudo apt -y install xvfb
|
run: sudo apt -y install xvfb
|
||||||
|
|
Loading…
Reference in New Issue