From b9b5f9ad2a96c8d20f8472bd72dc3e289822cae6 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 5cf096de6..68dfba2eb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -287,7 +287,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: