For Jenkins using a Groovy System Script, is there a way to easily search the build queue and list of executing builds for some criteria (specifically a parameter that match
Use the jenkins groovy postbuild plugin: I think this would be the groovy script:
import hudson.model.* def q = jenkins.model.Jenkins.getInstance().getQueue() def items = q.getItems() for (i=0;i