From 8bde81415519992209fc1d0e07b7475a57e4c738 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Fri, 11 Jul 2025 19:33:26 +0200 Subject: [PATCH] Build SDL3 for test step on Github Actions The latest Ubuntu does not provide the SDL3 package yet. --- .github/workflows/release.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 27e3abf2..65950d23 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -80,8 +80,16 @@ jobs: libavutil-dev libswresample-dev libusb-1.0-0 libusb-1.0-0-dev \ libv4l-dev + # SDL3 is not available in Ubuntu yet + - name: Install SDL3 + run: | + app/deps/sdl.sh linux native shared + - name: Test - run: release/test_client.sh + run: | + export PKG_CONFIG_PATH="$PWD"/app/deps/work/install/linux-native-shared/lib/pkgconfig + export LD_LIBRARY_PATH="$PWD"/app/deps/work/install/linux-native-shared/lib + release/test_client.sh build-linux-x86_64: runs-on: ubuntu-22.04