You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I've integrated SonarQube's sonar scanner to be ran everytime a user makes a commit to the repository.
The pipeline will start the scanner, compile, test & generate report, end the scanner to analyse, but I can't find a way to wait for the scanner results (or get them from the scanner result) to fail the build if the Quality Gate requirements are not good.
I saw that Jenkins has got some "waitForQualityGate()" function in their pipelines. Do you think there is any possibility to implement this in Bitbucket??
I'm not using any Bitbucket plugin... everything is built by hand in the pipeline and I'm hosting the sonar web server in a EC2 machine in AWS
Hey @Joan Vilariño
In the absence of a plugin that does this, one way to wait for the result of the quality gate is to poll their system within your pipeline.
For example, you can add a loop to your pipeline after the scan is triggered, which will check whether the scan has completed (or until some timeout is reached). This assumes that SonarQube has an endpoint which you can call within this loop.
Yes, that would be the "hard way" that's why I was asking in case BB had something already in place for this ...
Thanks for the comment anyway
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If someone is still looking for answer to this, you can use sonarqube-qualitygate pipe to achieve this.
https://bitbucket.org/sonarsource/sonarqube-quality-gate/src/master/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.