- Jenkins version:2.204.3
- Sonarqube version:7.9.2
- sonar-gerrit plugin: 2.30
I meet a issue:starting Sonarqube 7.7 in the preview mode (-Dsonar.analysis.mode=preview
) was removed, making it incompatible with the plugin.
How can I fix this issue without downgrading sonarqube version and upgrading Jenkins version?
It's possible to do the following procedure:
Execute the analysis (as usual)
Download the report using the REST API
Generate the sonar-report.json local report using a "jq" script
Call the Sonar-Gerrit plugin (as usual)
This is the command for steps 2 and 3:
You can find the sonar-report-builder.jq file used in step 3 and more information about this issue here.