From fc0f05cbd22dcb18bca59dffdfff6703af02fc16 Mon Sep 17 00:00:00 2001
From: Matthias Bodenbenner <m.bodenbenner@wzl-mq.rwth-aachen.de>
Date: Wed, 24 Jan 2024 18:10:14 +0100
Subject: [PATCH] trying to fix the pipeline

---
 .gitlab-ci.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 92edf81..e313b4b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -8,7 +8,7 @@ Build Lasertracker:
   rules:
     - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
       changes:
-        - src/lasertracker/*
+        - src/lasertracker/**/*
         - requirements.txt
         - .gitlab-ci.yml
   tags:
@@ -27,7 +27,7 @@ Build Monitoring:
   rules:
     - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
       changes:
-        - src/environment_monitoring/*
+        - src/environment_monitoring/**/*
         - requirements.txt
         - .gitlab-ci.yml
   script:
@@ -41,7 +41,7 @@ Build Robot:
   rules:
     - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
       changes:
-        - src/robot/*
+        - src/robot/**/*
         - requirements.txt
         - .gitlab-ci.yml
   tags:
@@ -58,7 +58,7 @@ Deploy Lasertracker:
   rules:
     - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
       changes:
-        - src/lasertracker/*
+        - src/lasertracker/**/*
         - requirements.txt
         - .gitlab-ci.yml
   needs: ["Build Lasertracker"]
@@ -77,7 +77,7 @@ Deploy Monitoring:
   rules:
     - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
       changes:
-        - src/environment_monitoring/*
+        - src/environment_monitoring/**/*
         - requirements.txt
         - .gitlab-ci.yml
   needs: ["Build Monitoring"]
@@ -95,7 +95,7 @@ Deploy Robot:
   rules:
     - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH
       changes:
-        - src/robot/*
+        - src/robot/**/*
         - requirements.txt
         - .gitlab-ci.yml
   needs: ["Build Robot"]
-- 
GitLab