简体   繁体   中英

Jenkins Script Pipeline sonar Integration

i'd like to start a Sonar project analysis with Jenkins 2.x Groovy Script Build Pipeline.

I have sonar configured in Maven so thats no big deal:

withEnv(["JAVA_HOME=${javaHome}", "PATH + MAVEN=${mavenHome}/bin:${env.JAVA_HOME}/bin", "MAVEN_OPTS=${mavenOpts}"]) {
        sh 'mvn -B sonar:sonar'
}

But how can i get results from sonar ? Or even better how can i determine if a quality gate was achived so that i can stop the build-pipeline.

The build breaker concept is obsolet since some versione of sonar, as far as i know. Or how would you handle this.

I still think it would be a good idea to stop/pause a build pipeline if the underlying code of a project is too bad.

Don't know if this is ideal, but I'm getting the status from the SonarQube api with a request (which you can do with the HttpRequest plugin).

def response = httpRequest 'https://SONAR_USER:SONAR_PASSWORD@SONAR_URL/api/qualitygates/project_status?projectKey=PROJECT_KEY'
def slurper = new groovy.json.JsonSlurper()
def result = slurper.parseText(response.content)
if (result.projectStatus.status == "ERROR") {
    currentBuild.result = 'FAILURE'
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM