From 372dfc5f75bbe7e8b69ac5e568ac8a58d3f324da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Mon, 12 Feb 2024 12:00:05 +0100 Subject: [PATCH] ci: Include subprojects in tarball jasmine-gjs isn't widely available in distributions, so instead of adding an obscure build dependency, include the subproject in the tarball. The --include-subprojects flag only applies to subprojects that are used in the build, so we do not bundle gi-docgen that is provided in the mutter image. Part-of: --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 810052692..44cccf37a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -275,7 +275,7 @@ dist: - sudo meson install -C mutter/build - mkdir -m 700 $XDG_RUNTIME_DIR script: - - dbus-run-session xvfb-run meson dist -C build + - dbus-run-session xvfb-run meson dist -C build --include-subprojects rules: - if: '$CI_PIPELINE_SOURCE == "merge_request_event"' changes: