-
Notifications
You must be signed in to change notification settings - Fork 143
Description
Is your feature request related to a problem? Please describe.
To analyse our projects in our build pipeline at Azure DevOps we use Sonar Scanner for MSBuild and pass the required properties to the executable. This is a very convenient way to customize the build. However, itβs still necessary to call the SonarQubePrepare@4
and SonarQubePublish@4
tasks too, to receive the quality gate results in Azure DevOps to include them into the related pull request. It should not be necessary to call the tasks.
- The SonarScanner has all
sonar.pullrequest.*
properties. - GitLab CI/CD supports
sonar.qualitygate.wait=true
.
Describe the solution you'd like
SonarScanner.MSBuild.exe
sould support something like sonar.qualitygate.wait=true
and be able to report the quality gate result back to Azure without the additional tasks.
Describe alternatives you've considered
-
Additional context
-