Skip to content

Commit dffcc4e

Browse files
committed
Increase how long a docker image is kept cached on a build slave
1 parent 4f3e7dc commit dffcc4e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ pipeline {
8787
cleanup {
8888
deleteDir()
8989
// If two docker prunes run simultaneously, one will fail, hence || true
90-
sh('docker image prune -af --filter="until=3h" --filter="label=tailor" || true')
90+
sh('docker image prune -af --filter="until=24h" --filter="label=tailor" || true')
9191
}
9292
}
9393
}

vars/tailorTestPipeline.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def call(Map args) {
8383
}
8484
} finally {
8585
deleteDir()
86-
sh('docker image prune -af --filter="until=3h" --filter="label=tailor" || true')
86+
sh('docker image prune -af --filter="until=24h" --filter="label=tailor" || true')
8787
}
8888
}}]
8989
}

0 commit comments

Comments
 (0)