Environment
-
CloudBees CI (CloudBees Core) on modern cloud platforms - Managed controller
-
CloudBees CI (CloudBees Core) on traditional platforms - Client controller
-
CloudBees Jenkins Enterprise - Managed controller
Resolution
The following script run in the Jenkins script console at Manage Jenkins » Script Console does that. Note that you should always make sure to have good backups before deleting things like this in a script.
Jenkins.instance.getItemByFullName("yourJobNameHere").builds.each { def p = it.getAction(hudson.plugins.promoted_builds.PromotedBuildAction) if (!p || !p.hasPromotion()) { it.delete() } } return
Replace "yourJobNameHere" with the name of the job.
This article is part of our Knowledge Base and is provided for guidance-based purposes only. The solutions or workarounds described here are not officially supported by CloudBees and may not be applicable in all environments. Use at your own discretion, and test changes in a safe environment before applying them to production systems.