From 74a05bc96758f4973db3c11827828ca42aa862b2 Mon Sep 17 00:00:00 2001 From: Bruno Date: Thu, 13 Feb 2025 14:44:37 -0300 Subject: [PATCH] gitlab-ci: Do not build GEGL workshop for AppImage while we are stable --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 06e50d9e63..8447f794d9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -240,7 +240,7 @@ deps-debian: fi - git clone $gegl_branch --depth=${GIT_DEPTH} https://gitlab.gnome.org/GNOME/gegl.git - cd gegl - - meson setup _build-${RUNNER} -Dprefix="${GIMP_PREFIX}" -Dworkshop=true + - meson setup _build-${RUNNER} -Dprefix="${GIMP_PREFIX}" $WORKSHOP_OPTION - cd _build-${RUNNER} - ninja - ninja install @@ -324,7 +324,9 @@ deps-debian-x64: extends: .debian-x64 needs: ["image-debian-x64"] stage: !reference [deps-debian, stage] - variables: !reference [deps-debian, variables] + variables: + GIT_STRATEGY: none + WORKSHOP_OPTION: '-Dworkshop=true' script: - !reference [deps-debian, script] artifacts: !reference [deps-debian, artifacts]