Adding analysis to a Jenkins job

This section explains how to add the SonarQube Cloud analysis to your Jenkins Freestyle or Pipeline jobs.

You can add the SonarQube Cloud analysis to your Jenkins Freestyle or Pipeline jobs and easily configure your project analysis with Jenkins through the in-product tutorial.

To be able to add a SonarQube Cloud analysis to a Jenkins job, Jenkins must have been set up for SonarQube Cloud integration. See the Setting up Jenkins page to learn more.

Adding analysis to a Freestyle job

The procedure depends on the project type.

  1. Create and configure your Jenkins job, and go to the Build Environment section.

  2. Enable Prepare SonarScanner environment to allow the injection of SonarQube Cloud values into this particular job. Once the environment variables are available, use them in a standard Maven build step (Invoke top-level Maven targets) by setting the Goals to include, or a standard Gradle build step (Invoke Gradle script) by setting the Tasks to execute.

Maven goal:

SONAR_MAVEN_GOAL

Gradle task:

sonar

In both cases, launching your analysis may require authentication. In that case, make sure that the global configuration in Jenkins of SonarQube Cloud defines a valid SonarQube Cloud token (see the Setting up Jenkins page).

Adding analysis to a Pipeline job

  1. In Jenkins, create your Pipeline job.

  2. Add the SonarQube Cloud analysis stage to the Jenkins file: see below.

  3. Setting up a pipeline pause until the quality gate is computed.

Adding analysis to a Multibranch Pipeline job

  1. In Jenkins, create your Multibranch Pipeline job.

  2. From your Jenkins job, go to Configure > Branch Sources > Behaviors and:

    1. Under Discover branches, make sure **Exclude branches that are also filed as PRs (**or MRs) is selected.

    2. Under **Discover pull (**or merge) requests from origin, make sure **The current pull (**or merge) request revision is selected.

    3. Under Specify ref specs, make sure the Ref Spec value will include any target branches (the default value should be enough). If the Specify ref specs behavior is not active, click on Add and select Specify ref specs.

  3. Add the SonarQube Cloud analysis stage to the Jenkins file: see below.

  4. Set up a pipeline pause until the quality gate is computed. The Setting up a pipeline pause page has instructions.

Adding an analysis stage to the Jenkins file

You must use the withSonarQubeEnv step in the SonarQube Cloud analysis stage of your pipeline job. This step is used to set the environment variables necessary to connect to SonarQube Cloud. The connection details are retrieved from the Jenkins global configuration.

The withSonarQubeEnv() method can take the following optional parameters:

  • installationName(string): name of the SonarQube Cloud installation as configured in Jenkins.

  • credentialsId(string): if you want to overwrite the credentials configured in the Jenkins global configuration.

  • envOnly(boolean): set it to true if you only want the SonarQube Cloud environment variables to be expanded in the build context

Examples

Note that you don’t need to specify an SCM stage in your Jenkins Pipeline or Multibranch Pipeline job.

Scripted pipeline example:

node {
  stage('SonarCloud analysis') {
    withSonarQubeEnv() { // Will pick the global server connection you have configured
      sh './gradlew sonar'
    }
  }
}

Last updated

Was this helpful?