Fortunately, Jenkins includes a scripting engine that can be run through the UI that handles the task very well.
Open the following URL: http://
and enter the following code in the textbox:
for(job in jenkins.model.Jenkins.theInstance.getProjects()) {
job.delete();
}
and moments later, all the jobs are removed!
No comments:
Post a Comment