From 571c8fb95ae3f812db210f64490c8f82a0fa1221 Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Fri, 30 Jan 2026 15:19:48 -0300 Subject: [PATCH] gitlab-ci: Do not make .app bundle on scheduled Homebrew builds While it was good to know the bundling is running fine, this had the risk of people taking them as official. So, let's be consistent with GNU Clang and Clang-CL builds. --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1bc18343d3..16a6cc1eb4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -656,9 +656,11 @@ gimp-win-eol: interruptible: true variables: OPT_PREFIX: /opt/macports + DMG_OPTION: '-Ddmg=true' - if: '$GIMP_CI_MACOS != null || "$[[ inputs.distribution_pipeline ]]" =~ /.*GIMP_CI_MACOS.*/' variables: OPT_PREFIX: /opt/macports + DMG_OPTION: '-Ddmg=true' - if: '($GIMP_CI_MESON_APPLECLANG != null || "$[[ inputs.test_pipeline ]]" =~ /.*GIMP_CI_MESON_APPLECLANG.*/) && $CI_JOB_NAME !~ /.*-part.*/ && $CI_JOB_NAME !~ /.*dist-mac-.*/' variables: OPT_PREFIX: /opt/homebrew @@ -666,7 +668,6 @@ gimp-win-eol: - macos variables: PKGCONF_RELOCATABLE_OPTION: '-Dpkgconfig.relocatable=true' - DMG_OPTION: '-Ddmg=true' before_script: - export GIMP_PREFIX="$PWD/_install-$(uname -m)" - export PATH="$OPT_PREFIX/bin:$PATH"