From a76cf4e8873a6266e39d535d301c1826c70272b6 Mon Sep 17 00:00:00 2001 From: soufiane Date: Fri, 21 Nov 2025 01:30:42 +0100 Subject: [PATCH] chore: remove SonarQube stages from Jenkins pipeline MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove SonarQube Analysis stage - Remove Quality Gate stage - Keep configuration files for future use (sonar-project.properties, .sonarignore) The SonarQube integration requires additional Jenkins plugin configuration. Configuration files are preserved for when the plugin is properly set up. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- Jenkinsfile | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ab2d88a5..41f2e262 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -81,32 +81,6 @@ pipeline { } } - stage('SonarQube Analysis') { - agent { - docker { - image 'sonarsource/sonar-scanner-cli:latest' - args '-u root' - } - } - steps { - echo "🔍 Analyse de la qualité du code avec SonarQube..." - script { - withSonarQubeEnv('SonarQube') { - sh 'sonar-scanner' - } - } - } - } - - stage('Quality Gate') { - steps { - echo "🚦 Vérification du Quality Gate SonarQube..." - timeout(time: 5, unit: 'MINUTES') { - waitForQualityGate abortPipeline: true - } - } - } - stage('Build Docker image') { steps { echo "🐳 Construction de l’image Docker backend..."