From 4c732deea00c5fd699357b0feb472ef4491a3532 Mon Sep 17 00:00:00 2001 From: Simon Praetorius <simon.praetorius@tu-dresden.de> Date: Wed, 4 Dec 2024 00:12:08 +0100 Subject: [PATCH] Do not inherit global variables in a triggered pipeline --- .gitlab-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2eaa43210..48d6d44b9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -40,6 +40,8 @@ debian:11 gcc-10-20-expensive: core-modules-test: stage: downstream + inherit: + variables: false # do not inherit global variables variables: CI_BUILD_REF_NAME: $CI_COMMIT_REF_NAME DUNECI_TEST_LABELS: "" @@ -53,6 +55,8 @@ core-modules-test: full-system-test: stage: downstream + inherit: + variables: false # do not inherit global variables variables: CI_BUILD_REF_NAME: $CI_COMMIT_REF_NAME DUNECI_TEST_LABELS: "" -- GitLab