From a737aeddc90ea05cbfc62823f1932acbdcf5b5f5 Mon Sep 17 00:00:00 2001 From: Axel Meyer Date: Mon, 4 May 2026 17:47:54 +0200 Subject: [PATCH] ci(engine-launcher): install xvfb for headless window-opening smoke tests smoke.sh already wraps with xvfb-run when DISPLAY is unset, but xvfb package wasn't installed in the runner. Window-opening tests (S4, E.3-S1) segfaulted on raylib InitWindow without X server. --- .gitea/workflows/reusable-engine-launcher.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/reusable-engine-launcher.yml b/.gitea/workflows/reusable-engine-launcher.yml index a06d507..7659f65 100644 --- a/.gitea/workflows/reusable-engine-launcher.yml +++ b/.gitea/workflows/reusable-engine-launcher.yml @@ -40,6 +40,8 @@ jobs: libx11-dev libxrandr-dev libxi-dev libxcursor-dev libxinerama-dev \ libxkbcommon-dev libwayland-dev \ libgl1-mesa-dev libglu1-mesa-dev + # xvfb: headless X server for window-opening smoke tests + apt-get install -y xvfb - name: Configure CMake run: cmake -B build -DCMAKE_BUILD_TYPE=${{ inputs.build_type }}