Hi
I am using below Jenkins and SonarQube version.
Jenkins: - 2.73.3
SonarQube: - 6.7
I want to update the Sonarqube quality gate status on jenkins pipeline if QG is fail than Jenkins job should be failed. I have used below configuration in our Jenkins pipeline.
Hi
I am using below Jenkins and SonarQube version.
Jenkins: - 2.440.2
SonarQube: - 9.9.5
I want to update the Sonarqube quality gate status on jenkins pipeline if QG is fail than Jenkins job should be failed. I have used below configuration in our Jenkins pipeline.
stage(âQuality Gateâ) {
steps {
timeout(time: 3, unit: âMINUTESâ) {
waitForQualityGate abortPipeline: true
}
}
}
After successfully analysis QG is showing passed in sonarqube dashboard but still not getting the correct response on Jenkins pipeline.