From 77022810519b73f99df60cecfbbda90270517451 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Simon=20K=C3=BCnzel?= <simonk@fsmpi.rwth-aachen.de>
Date: Sat, 1 Mar 2025 19:25:37 +0100
Subject: [PATCH] fixup! Add package caching for CI

---
 .gitlab-ci.yml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4d4a113..13ab1f1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,6 +2,9 @@ stages:
     - build
     - run
 
+variables:
+    PARENT_PIPELINE_ID: $CI_PIPELINE_ID
+
 generate-pipeline:
     stage: build
     image: python:3.13-slim
@@ -9,8 +12,8 @@ generate-pipeline:
         - >-
             python build_pipeline_generator.py
             --ci-pipeline-dest child-pipeline.yml
-            --commit-sha $CI_COMMIT_SHA
-            --commit-tag $CI_COMMIT_TAG
+            --commit-sha "$CI_COMMIT_SHA"
+            --commit-tag "$CI_COMMIT_TAG"
             api job_controller
             $(find job_controller/jobs/ -mindepth 1 -maxdepth 1)
 
-- 
GitLab