From 5415e6779c2cd8e85e92e733dbdaf4e8029d1f47 Mon Sep 17 00:00:00 2001 From: Emma Anholt Date: Thu, 14 May 2026 09:13:42 -0700 Subject: [PATCH] weston: Run at a more reasonable 1920x1080 resolution, not 1024x640. The headless backend's defaults are quite low, and it was preventing renderdoc replays from running any larger than that, which in turn cut off the screenshots we wanted to take. Part-of: --- .gitlab-ci/common/weston.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci/common/weston.sh b/.gitlab-ci/common/weston.sh index de36afdd828..f5de79bb706 100755 --- a/.gitlab-ci/common/weston.sh +++ b/.gitlab-ci/common/weston.sh @@ -6,7 +6,12 @@ mkdir -p /tmp/.X11-unix export DISPLAY=:0 WAYLAND_DISPLAY=wayland-0 -weston --config="$CI_COMMON_DIR/weston.ini" --socket="$WAYLAND_DISPLAY" --log "$RESULTS_DIR/weston.log" --logger-scopes=log,xwm-wm-x11 "$@" & +weston --config="$CI_COMMON_DIR/weston.ini" \ + --socket="$WAYLAND_DISPLAY" \ + --log "$RESULTS_DIR/weston.log" \ + --logger-scopes=log,xwm-wm-x11 \ + --width 1920 --height 1080 \ + "$@" & export WAYLAND_DISPLAY while [ ! -S /tmp/.X11-unix/X0 ]; do sleep 1; done