From 8af295c6740ade307758d966257f81d9173f9006 Mon Sep 17 00:00:00 2001
From: Maurice <zimmnau@ilr.rwth-aachen.de>
Date: Tue, 25 Feb 2025 14:59:02 +0100
Subject: [PATCH] Test without fetch and sha requests

---
 .ci-scripts/setup-integration-test.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.ci-scripts/setup-integration-test.yml b/.ci-scripts/setup-integration-test.yml
index 70736729..40c8465c 100644
--- a/.ci-scripts/setup-integration-test.yml
+++ b/.ci-scripts/setup-integration-test.yml
@@ -51,10 +51,10 @@ setup-integration-test:
 
   ## Detect modified tool
   # Ensure full history is available
-  - git fetch --unshallow || echo "Repository already has full history"
+  # - git fetch --unshallow || echo "Repository already has full history"
 
-  # Safely handle missing CI_COMMIT_BEFORE_SHA
-  - if [ -z "$CI_COMMIT_BEFORE_SHA" ] || ! git rev-parse "$CI_COMMIT_BEFORE_SHA" >/dev/null 2>&1; then echo "Previous commit SHA is not available. Using HEAD~1 for comparison."; CI_COMMIT_BEFORE_SHA=$(git rev-parse HEAD~1); fi
+  # # Safely handle missing CI_COMMIT_BEFORE_SHA
+  # - if [ -z "$CI_COMMIT_BEFORE_SHA" ] || ! git rev-parse "$CI_COMMIT_BEFORE_SHA" >/dev/null 2>&1; then echo "Previous commit SHA is not available. Using HEAD~1 for comparison."; CI_COMMIT_BEFORE_SHA=$(git rev-parse HEAD~1); fi
 
   # List all changed folders
   - CHANGED_FOLDERS=$(git diff --name-only $CI_COMMIT_BEFORE_SHA $CI_COMMIT_SHA | awk -F'/' '{print $1}' | sort | uniq)
-- 
GitLab