Adding analysis to GitLab CI/CD pipeline
Integrating SonarQube analysis into your GitLab CI/CD pipeline.
Once you have created your project in SonarQube, you can add the SonarQube analysis to your GitLab CI/CD pipeline:
Configure the project analysis parameters.
Add the analysis to your GitLab CI/CD pipeline.
Commit and push your code to start the analysis.
You can fail the pipeline when the quality gate fails (see below). If you use a monorepo, see If you use a monorepo. To manage other project-level features, see Setting up GitLab integration at project level.
For more information on configuring your build with GitLab CI/CD, see the GitLab CI/CD configuration reference.
A GitLab runner with a Docker executor is required.
Configuring the project analysis parameters
For general information, see Analysis parameters and the respective SonarScanner section: SonarScanner for Maven, SonarScanner for Gradle, Using the scanner, SonarScanner CLI, and Configuring the scanner.
With GitLab CI/CD, you can securely set sonar.token and sonar.host.url properties through CI/CD variables: see Setting the authentication to the SonarQube Server below.
In addition, starting from the Developer edition, SonarScanners running in GitLab CI/CD can automatically detect branches and merge requests being built so you don’t need to specifically pass them as parameters to the scanner. See Introduction to branch analysis and Introduction to pull request analysis for more information.
Configuring your .gitlab-ci-yml file
This section shows you how to configure your GitLab CI/CD .gitlab-ci.yml file. The allow_failure parameter in the examples allows a job to fail without impacting the rest of the CI suite.
By default, GitLab will build all branches but not merge requests. To build merge requests, you need to use rules in your .gitlab-ci.yml. See the example configurations below for more information.
Select the scanner you’re using below to expand an example configuration:
SonarScanner for Gradle
sonarqube-check:
image: gradle:8.10.0-jdk17-jammy
variables:
SONAR_USER_HOME: "${CI_PROJECT_DIR}/.sonar" # Defines the location of the analysis task cache
GIT_DEPTH: "0" # Tells git to fetch all the branches of the project, required by the analysis task
cache:
key: "${CI_JOB_NAME}"
paths:
- .sonar/cache
script: gradle sonarqube -Dsonar.qualitygate.wait=true
allow_failure: false
rules:
- if: $CI_COMMIT_REF_NAME == 'main' || $CI_PIPELINE_SOURCE == 'merge_request_event'SonarScanner CLI
Project key
A project key has to be provided through sonar-project.properties or through the command line parameter. For more information, see the SonarScanner CLI documentation.
Self-signed certificates
If you secure your SonarQube Server instance with a self-signed certificate, you may need to build a custom image based on sonarsource/sonar-scanner-cli. See the section Advanced docker configuration within the SonarScanner CLI documentation.
For C/C++/Objective-C configuration examples, you can refer to the sonarsource-cfamily-examples repository.
The errors "Missing blame information…" and "Could not find ref…" can be caused by checking out with a partial or shallow clone, or when using Git submodules. You should disable git shallow clone to make sure the scanner has access to all of your history when running analysis with GitLab CI/CD.
For more information, see Git shallow clone.
Failing the pipeline when the quality gate fails
You can configure the SonarScanner to wait for the quality gate result. This setting will force the pipeline to fail if the quality gate fails.
To do so:
Set the
sonar.qualitygate.waitanalysis parameter totrue.You can set the
sonar.qualitygate.timeoutanalysis parameters to the number of seconds that the scanner should wait for a report to be processed. The default is 300 seconds.
See the configuration examples in Configuring your .gitlab-ci-yml filefile above.
If you use a monorepo
The monorepo feature is supported starting in the Enterprise edition provided the GitLab integration with SonarQube Server has been properly set up, see Setting up GitLab integration at global level for more details.
To add the SonarQube Server analysis to your GitLab’s monorepo CI/CD pipeline:
If not already done, create the SonarQube Server projects related to your monorepo: see Managing monorepo projects.
For each project, set up integration features: see Setting up GitLab integration at project level.
For each project in the monorepo:
Set up the authentication to SonarQube Server (
sonar.tokenandsonar.host.urlproperties). See the Setting up the authentication to the SonarQube Server expandable below, for instructions.Set the other necessary analysis parameters; see the Configuring the project analysis parameters article above for details. The mandatory parameter is:
sonar.projectKeyproperty.
Add a CI/CD YAML syntax reference ( .gitlab-ci.yml) in the home directory of the monorepo: Define a job for each monorepo project in .gitlab-ci.yml.
You can fail the pipeline when the quality gate fails: see above.
Setting up the authentication to the SonarQube Server
You have to create the Sonar tokens used to authenticate to the SonarQube Server during the analysis of the monorepo projects and store them securely in the pipeline environment. You can either use one single global-level token for the monorepo or use a project-level token for each project in the monorepo. Note that the user account used to generate the token must have the Execute analysis permission.
Proceed as follows:
Generate your tokens in SonarQube Server, see Managing your tokens:
For project tokens, create a token for each project (you need the Administer permission on the project): Go to the Security page of your SonarQube Server account and create a Project analysis token.
For a global token, ask your administrator (The procedure is similar but you need the global Administer system permission.).
Create a custom environment variable in GitLab and set the Key as follows:
If you use a global token: enter
SONAR_TOKEN.Otherwise: enter
SONAR_TOKEN_1(or another unique identifier within the monorepo) for the token of your first project in the monorepo
In the Value field, enter the corresponding token value.
If you use project-level tokens, repeat steps 2 to 3 for each additional project in the monorepo.
Create a custom environment variable in GitLab with:
Key:
SONAR_HOST_URLValue:
SonarQube Server URL
Last updated
Was this helpful?

