From 5a45a89a83c78a2a1f817d71c6cf94830a89d31e Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Tue, 6 Jan 2026 11:09:18 +0100 Subject: [PATCH] ci: install to prefix after building in Debian Artifacts include the prefix directory, but it was empty: we weren't running the install step. Run it to align Debian with FreeBSD. This allows reviewers to check the HTML documentation output. Signed-off-by: Simon Ser --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2ad999a7..39beeaf3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -225,6 +225,7 @@ armv7-debian-container_prep: - meson setup $BUILDDIR --prefix="$PREFIX" -Dicon_directory=/usr/share/X11/icons --fatal-meson-warnings -Dwerror=true ${MESON_BUILD_TYPE} - ninja -C $BUILDDIR -k0 -j${FDO_CI_CONCURRENT:-4} - meson test -C $BUILDDIR --num-processes ${FDO_CI_CONCURRENT:-4} + - ninja -C $BUILDDIR install - ninja -C $BUILDDIR clean artifacts: name: wayland-$CI_JOB_NAME