You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
I understand the Clover link is visible on the Summary line when opening a plan if it was configured to execute Clover.
Is there an way to identify which plans among hundreds use Clover? (SQL or otherwise...?)
Thanks,
Craig
Hi Craig,
The following query returns jobs for which the "Use Clover to collect code coverage for this build" check-box is enabled:
select project.title, chain.title, job.title, job.full_key from project join build as chain on chain.project_id = project.project_id join chain_stage as stage on stage.build_id = chain.build_id join build as job on job.stage_id = stage.stage_id join build_definition on build_definition.build_id = job.build_id where build_definition.xml_definition_data like '%<custom>%<clover>%<exists>true</exists>%';
The following query will return you jobs for which the "Clover Report" artifact is defined:
select project.title, chain.title, job.title, job.full_key, artifact_definition.label from project join build as chain on chain.project_id = project.project_id join chain_stage as stage on stage.build_id = chain.build_id join build as job on job.stage_id = stage.stage_id join artifact_definition on artifact_definition.producer_job_id = job.build_id where artifact_definition.label like 'Clover Report%';
Cheers
Marek
Back in April of last year one of the major product announcements from Opsgenie was the launch of the Incident investigation view which created a deep connection between Bitbucket and Opsgenie, empow...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.