简体   繁体   English

如何将 SonarQube Quality Gate 集成到我的 Jenkins 管道中?

[英]How can I integrate SonarQube Quality Gate into my Jenkins pipeline?

I am executing in a pipeline a command to pass the sound of a project, what I need is that, just like in a normal job the sonar link remains once the job is executed, the same happens in the pipeline, now that when I run it in the pipeline, the SonarQube link is not saved, so I have the steps in groovy:我正在管道中执行一个命令来传递项目的声音,我需要的是,就像在正常作业中一样,一旦作业执行,声纳链接就会保持不变,管道中也会发生同样的情况,现在当我运行时它在管道中,SonarQube 链接没有保存,所以我有 groovy 中的步骤:

stage ('QA'){
  steps { 
     echo 'executing sonar'
     bat  'mvn sonar:sonar -Dsonar.host.url='+env.SONAR_URL+' - 
     Dsonar.projectName=QA:%JOB_BASE_NAME% - 
     Dsonar.projectKey=QA:%JOB_BASE_NAME%'
  }
}

stage("Quality Gate"){
   timeout(time: 1, unit: 'HOURS') { // Just in case something goes wrong, pipeline will be killed after a timeout
       def qg = waitForQualityGate() // Reuse taskId previously collected by withSonarQubeEnv
       if (qg.status != 'OK') {
          error "Pipeline aborted due to quality gate failure: ${qg.status}"
       }
   }
}

Try replacing with:尝试替换为:

stage ('QA'){
    steps {
        echo 'Running SonarQube..'
        withSonarQubeEnv('XXXXXXXX') {
            bat  'mvn sonar:sonar -Dsonar.host.url='+env.SONAR_URL+' - 
            Dsonar.projectName=QA:%JOB_BASE_NAME% - 
            Dsonar.projectKey=QA:%JOB_BASE_NAME%'
            timeout(time: 1, unit: 'HOURS') {
                script {
                    def qg = waitForQualityGate()
                    if (qg.status != 'OK') {
                        error "Pipeline aborted due to a quality gate failure:   ${qg.status}"
                    }
                }
            }
        }
    }
}

Note that the XXXXXXXX should be replaced with the name of a Sonar config you've entered in Jenkins under Manage Jenkins>Configure System>SonarQube servers请注意,XXXXXXXX 应替换为您在 Jenkins 中的 Manage Jenkins>Configure System>SonarQube servers 下输入的 Sonar 配置的名称

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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