Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do I need sonar and sonar runner for Jenkins?

I want to set up Sonar with Jenkins. But I'm not sure if the Sonar site describes two different ways to do this or if there are two necessary steps:

As far as I understood it, it's two different ways. If this is the case, what is the difference and what are the advantages and disadvantages (between the Sonar itself and Sonar runner)?

like image 269
user1338413 Avatar asked Nov 20 '12 11:11

user1338413


People also ask

How does SonarQube work with Jenkins?

This plugin lets you centralize the configuration of SonarQube server connection details in Jenkins global configuration. Then you can trigger SonarQube analysis from Jenkins using standard Jenkins Build Steps or Jenkins Pipeline DSL to trigger analysis with: SonarScanner. SonarScanner for Maven.

What is the difference between SonarQube and Jenkins?

Jenkins is a tool to implement Continuous Integration. The quick summary of which is integrating, building and testing code every time a change is made. Sonar is "a tool for managing code quality." It focuses on analyzing code.

Is Sonar and SonarQube same?

SonarQube (formerly Sonar) is an open-source platform developed by SonarSource for continuous inspection of code quality to perform automatic reviews with static analysis of code to detect bugs, code smells on 17 programming languages.

Do SonarQube and SonarQube scanners need to be in the same network?

SonarQube Scanners don't need to be on the same network as the SonarQube Server. There is no communication between SonarQube Scanners and the SonarQube Database.


1 Answers

If you want to analyse a project with SonarQube and Jenkins, here's what you need:

  • A SonarQube server up and running

  • A Jenkins server up and running with the SonarQube Scanner for Jenkins installed and configure to point to your SonarQube server

  • A job configured to run a SonarQube analysis on your project:

    • Using the default and standard SonarQube Scanner (suitable for most projects)

    • Using the SonarQube Scanner for MSBuild (for .NET solutions)

    • Using a post build action for Maven-based projects

Everything is described more in details on the SonarQube Scanner for Jenkins documentation page.

like image 92
Fabrice - SonarSource Team Avatar answered Sep 29 '22 17:09

Fabrice - SonarSource Team