

Configuring Jenkins for SonarQube Analysis
In order to run the SonarQube analysis in Jenkins, there are few things we have to take care before creating the Jenkins job. First of all, we need to install the โSonarQube Scannerโ plugin. For this, letโs go to Jenkins -> Manage Jenkins -> Manage Plugins. There, navigate to โAvailableโ view and look for the plugin โSonarQube Scannerโ. Select the plugin and click on โInstall without restartโ and wait for the plugin to be installed.
Installing SonarQube Scanner Plugin

Once the plugin is installed, we need to configure a few things in the Jenkins global configuration page.
For that, letโs click on Jenkins -> Manage Jenkins -> Configure System -> SonarQube Servers and fill in the required details.
SonarQube Server Configuration

Here,
- Name: Anything meaningful. Eg. sonarqube
- Server URL: <your sonarqube server url>
- Server Authentication Token: Refer below
To get the server authentication token, log in to SonarQube and go to Administration -> Security -> Users and then click on Tokens. There, Enter a Token name and click on Generate and copy the token value and paste it in the Jenkins field and then click on โDoneโ.
Creating an Authorization Token

Finally, save the Jenkins Global configurations by clicking on the โSaveโ icon.
There is one last configuration which has to be set up. In order to run SonarQube scan for our project, we need to install and configure the SonarQube scanner in our Jenkins. For that, letโs go to Manage Jenkins -> Global Tool Configuration -> SonarQube Scanner -> SonarQube Scanner installations. Enter any meaningful name under the Name field and select an appropriate method in which you want to install this tool in Jenkins. Here, we are going to select โInstall automaticallyโ option. Then, click on โSaveโ.
SonarQube Scanner Configuration in Jenkins

Creating and Configuring Jenkins Pipeline Job
Since we are all set with the global configurations, letโs now create a Jenkins Pipeline Job for a simple node.js application for which code analysis will be done by SonarQube.
For that, letโs click on โNew Itemโ in Jenkins home page and enter the job name as โsonarqube_test_pipelineโ and then select the โPipelineโ option and then click on โOKโ.
Creating Jenkins Pipeline job

Now, inside the job configuration, letโs go to the Pipeline step and select Pipeline Script from SCM and then select Git and enter the Repository URL and then save the job.
Pipeline Job Configuration

As shown in the image, the source code is under โdevelopโ branch of the repository โMEANStackAppโ. We have also committed a Jenkinsfile there which will be the input for our pipeline job.
The Jenkinsfile has the logic to checkout the source code and for SonarQube tool to perform code analysis on the code. Below is the content of this Jenkinsfile.
node('docker') {
stage('SCM') {
checkout poll: false, scm: [$class: 'GitSCM', branches: [[name: 'refs/heads/develop']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://github.com/CodeBabel/MEANStackApp.git']]]
}
stage('SonarQube Analysis') {
sh "/home/jenkins/tools/hudson.plugins.sonar.SonarRunnerInstallation/sonarqubescanner/bin/sonar-scanner -Dsonar.host.url=http://192.168.0.14:9000 -Dsonar.projectName=meanstackapp -Dsonar.projectVersion=1.0 -Dsonar.projectKey=meanstack:app -Dsonar.sources=. -Dsonar.projectBaseDir=/home/jenkins/workspace/sonarqube_test_pipeline"
}
}
Building the Jenkins Pipeline Job
Since we have configured everything, letโs build the job and see what happens. For that, click on the โBuild Nowโ option in the job.
Building the Jenkins job

From the logs below, it can be seen that the Jenkins job is successful.
Logs of Jenkins Pipeline Job

Below is the job view in Blue Ocean. Pretty, isnโt it?
Job View in Blue Ocean

To check the analysis report, letโs go to the link as shown in the build logs. The link basically points to the SonarQube server URL.
SonarQube Analysis Report

Here, it says there are no bugs and vulnerabilities in this code and the Quality Gate status looks โPassedโ. Though itโs a simple app, it is good to know that code quality is good
Culled from https://codebabel.com/sonarqube-with-jenkins/
Leave a Reply