Skip to content

Commit bfed07e

Browse files
committed
ci: fix SKIP_SHARED_PIPELINE leaking into reliability env pipeline
The global SKIP_SHARED_PIPELINE=true introduced in #3679 is passed by GitLab to all downstream pipelines, including the cross-project deploy_to_reliability_env trigger. This caused trigger_unpack to be suppressed in the reliability env pipeline, breaking the PHP demo jobs (FrankePHP, Shopware, Symfony, Laravel) that depend on it. Fix: override deploy_to_reliability_env to explicitly pass SKIP_SHARED_PIPELINE=false, preventing the parent pipeline's suppression flag from affecting the downstream reliability env pipeline.
1 parent 8cd0131 commit bfed07e

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.gitlab-ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,10 @@ package-trigger:
104104
RELIABILITY_ENV_BRANCH: $RELIABILITY_ENV_BRANCH
105105
SKIP_SHARED_PIPELINE: "false"
106106

107+
deploy_to_reliability_env:
108+
variables:
109+
SKIP_SHARED_PIPELINE: "false"
110+
107111
# requirements_json_test doesn't check SKIP_SHARED_PIPELINE, suppress explicitly
108112
requirements_json_test:
109113
rules:

0 commit comments

Comments
 (0)