From 63284b19bc9c9ca6843d3262fbd3c85c29ee24dd Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Tue, 15 Apr 2025 19:13:28 +0200 Subject: [PATCH] Update GitLab CI variables for project relocation The GitLab CI configuration variables have been updated to reflect changes in the project location. The updates include adjustments to the clone directory, project key, and organization, ensuring that Sonar analysis and GitLab CI operations are correctly configured for the relocated project. --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9c0009c..bf55d8a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,11 +8,11 @@ stages: - sonarcloud_scan variables: - GITLAB_CLONE_DIR: "/builds/thischwa/CloudflareDNS-java" + GITLAB_CLONE_DIR: "/builds/ths6435116/CloudflareDNS-java" # GITLAB_CLONE_DIR: "cloudflaredns-java" SONAR_HOST_URL: $SONAR_HOST_URL - SONAR_PROJECT_KEY: "thischwa_CloudflareDNS-java" - SONAR_ORGANIZATION: "thischwa" + SONAR_PROJECT_KEY: "ths6435116_CloudflareDNS-java" + SONAR_ORGANIZATION: "ths6435116" SONAR_TOKEN: $SONAR_TOKEN # Ensure this token is correctly set in GitLab CI/CD variables SONAR_USER_HOME: "${CI_PROJECT_DIR}/.sonar" # Defines the location of the analysis task cache GIT_DEPTH: "0" # Tells git to fetch all the branches of the project, required by the analysis task