Am Samstag, den 23.05.2020, 18:43 -0700 schrieb Vijay Gongle:
> We have plenty of Jenkins job and most of them are running with
> SonarQube for analysis. 
> 
> 
> 
> How to find out; how many such jobs are running with SonarQube ?

This is derived from a script I've used in the past to modify all
Artifactory wrappers in all our jobs:
import hudson.model.*
import hudson.plugins.sonar.*
import
jenkins.model.*


// Iterate over all jobs
Jenkins.instance.getAllItems(AbstractProject.class).each {job ->
  def fName = job.getFullName()


  // Iterate over all build wrappers
  for (wrapper in job.getBuildWrappersList()) {
    if (wrapper instanceof SonarBuildWrapper) {
      println(fName + ' has SonarQube configuration.')
    }
  }
}
println('Done.')

Paste it into the Script Console and see how it works. We don't use
SonarCube ourselves, so it may work or not, but it should point you
into the right direction.
HTH...
Dirk-- 
Dirk HeinrichsSenior Systems Engineer, Delivery PipelineOpenText ™ Discovery | 
RecommindPhone: +49 2226 15966 18Email: dheinric@opentext.comWebsite: 
www.recommind.deRecommind GmbH, Von-Liebig-Straße 1, 53359 
RheinbachVertretungsberechtigte Geschäftsführer Gordon Davies, Madhu
Ranganathan, Christian Waida, Registergericht Amtsgericht Bonn,
Registernummer HRB 10646This e-mail may contain confidential and/or privileged 
information. If
you are not the intended recipient (or have received this e-mail in
error) please notify the sender immediately and destroy this e-mail.
Any unauthorized copying, disclosure or distribution of the material in
this e-mail is strictly forbiddenDiese E-Mail enthält vertrauliche und/oder 
rechtlich geschützte
Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-
Mail irrtümlich erhalten haben, informieren Sie bitte sofort den
Absender und vernichten Sie diese Mail. Das unerlaubte Kopieren sowie
die unbefugte Weitergabe dieser Mail sind nicht gestattet.

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/53911cd297f0aa4bcedeac64a755e8a6aaeddcd4.camel%40opentext.com.

Attachment: signature.asc
Description: This is a digitally signed message part

Reply via email to