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..."