- ALM used Azure DevOps
- CI system used Azure DevOps
- Languages of the repository C#, angular
- Private project
- No errors
I have organization with multiple projects in Azure DevOps. I was able to implement SonarCloud scan into my PR validation pipelines, that runs as part of pull requests for each project. But I have problem with implementing quality gate result into PR. Wierd is that in some PRs it works, but most dont.
This repos was originaly in Bitbucket and now its in ADO. After this migration, I created new organization. In pipelins i changed only service connection, organiuzation, project key and project name.
Here are pipeline steps in pipeline yaml:
for angular
- checkout: self
fetchDepth: 0
# Prepare the SonarCloud analysis
- task: SonarCloudPrepare@2
inputs:
SonarCloud: āSonarCloudā
organization: āorgā
scannerMode: āCLIā
configMode: āmanualā
cliProjectKey: āportalā
cliSources: ā.ā
# Run the SonarCloud analysis
- task: SonarCloudAnalyze@2
# Publish the SonarCloud analysis results
- task: SonarCloudPublish@2
inputs:
pollingTimeoutSec: '300'
for .net
- checkout: self
fetchDepth: 0 # Disable shallow clone to fetch all history for SonarCloud analysis
- task: SonarCloudPrepare@2
inputs:
SonarCloud: āSonar Cloudā # Ensure this is the name of your service connection for SonarCloud
organization: āchoiceā # Your organization key in SonarCloud
scannerMode: āMSBuildā
projectKey: āapi_projectā # Your project key in SonarCloud
projectName: āAPIā
- template: Stages/build-proc.yml
- task: SonarCloudAnalyze@2
- task: SonarCloudPublish@2
inputs:
pollingTimeoutSec: ā300ā
This part works. PR pipeline scan my code(main, or side branch, or pull request, depens on which branch i setup) I can see results in sonar cloud website as well in pipeline(extensions, quality gate)
Steps I did
-
runed test for main branch, as well as part of pull request.
-
in sonar cloud website in project Administration => Pull request => I set provider to Azure Devops Services, Inserted PAT token with read and write code, and status and enabled summary comments.
-
in branch settings I tryed to add guality gate. In some project i can see it in dropdown menu, in most of them I dont, If its there quality gate works.
-
I tryed to add it manualy but in that case PR guality gate is stuck with waiting statusā¦
-
I checked background tasks in sonar but i cant see anything wierd there
Does someone have similar issue? Did I skipped some step? I will be greatfull for any advice.
Branch policy
PR
PR pipeline results