From 9d644cf176341c60385d649616ed9be95a5e1838 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Simon=20K=C3=BCnzel?= <simonk@fsmpi.rwth-aachen.de>
Date: Mon, 24 Feb 2025 23:43:07 +0100
Subject: [PATCH] Fix CI

---
 generate_ci_pipeline.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/generate_ci_pipeline.py b/generate_ci_pipeline.py
index 449af14..8c73dd3 100644
--- a/generate_ci_pipeline.py
+++ b/generate_ci_pipeline.py
@@ -92,6 +92,7 @@ echo "{\\"auths\\":{\\"$CI_REGISTRY\\":{\\"username\\":\\"$CI_REGISTRY_USER\\",\
             f"--destination=$CI_REGISTRY_IMAGE/{self.versioned_full_name()}",
             f"--build-arg=GIT_COMMIT_SHA={self.context.commit_sha}",
             f"--build-arg=ENV_TYPE={self.context.env_type()}",
+            f"--cache=true",
         ]
         
         if self.context.commit_tag is not None:
@@ -154,11 +155,11 @@ run-api-tests:
         name: registry.git.fsmpi.rwth-aachen.de/videoag/backend/{context.env_type()}_api:{context.commit_sha}
         entrypoint: [""]
     script:
-        - ./docker_start.sh -test
+        - /code/docker_start.sh -test
     artifacts:
         paths:
             - /code/coverage/report.txt
-            - /code/api/coverage/html/*
+            - /code/coverage/html/*
 
 """
 
-- 
GitLab