Jenkins
  • Introduction
  • 1. Jenkins Basics
    • 1.1 Run Jenkins as-is
    • 1.2 Installation of Jenkins
    • 1.3 Installation of jenkins on Tomcat
  • 2. Jenkins Configurations
    • 2.1 Configure Jenkins Slave
    • 2.2 Configure SonarQube with Jenkins
    • 2.3 Configure SilkCentral with Jenkins
    • 2.4 Configure TestNG with Jenkins
  • 3. How to use Jenkins
    • 3.1 Create jobs
    • 3.2 Run jobs
    • 3.3 Run Single Job Parallely in Multiple slaves
  • 4. Jenkins Integrations
    • 4.1 Analysis with SonarQube using Jenkins
    • 4.2 SCTM Result Analysis with Jenkins
    • 4.3 TestNG Result Analysis with Jenkins
  • 5. Jenkins Advanced
    • 5.1Jenkins Challenges
Powered by GitBook
On this page

Was this helpful?

  1. 4. Jenkins Integrations

4.1 Analysis with SonarQube using Jenkins

Previous4. Jenkins IntegrationsNext4.2 SCTM Result Analysis with Jenkins

Last updated 5 years ago

Was this helpful?

Pre-requisite is to configure

Job Configuration

  1. Configure the project, and scroll down to the Build section.

  2. Add the _Execute the SonarQube Scanner _build step to your build.

  3. Configure the SonarQube analysis properties. You can either point to an existing sonar-project.properties file or set the analysis properties directly in the Analysis properties field.

Now build the job to get the tests analysed and run the tests instantly.

After the tests are run the code analysis result can be found in sonarQube dashboard.

This is the beginning for learning to analyse the code...

SonarQube with Jenkins