devops-exercises/exercises/cicd/solutions/remove_builds_solution.groovy
abregman 046b154ccd Change Jenkins section to CI/CD
CI/CD will include Jenkins and other CI/CD systems.

In addition, added a couple of questions on various topics.
2021-10-31 08:32:18 +02:00

17 lines
437 B
Groovy

def removeOldBuilds(buildDirectory, days = 14) {
def wp = new File("${buildDirectory}")
def currentTime = new Date()
def backTime = currentTime - days
wp.list().each { fileName ->
folder = new File("${buildDirectory}/${fileName}")
if (folder.isDirectory()) {
def timeStamp = new Date(folder.lastModified())
if (timeStamp.before(backTime)) {
folder.delete()
}
}
}
}