Update Jenkinsfile to reduce build log retention from 20 to 10 builds for improved resource management

This commit is contained in:
Tom Butcher 2026-08-01 20:17:12 +01:00
parent 00f55d44bf
commit 0b98d8041e

2
Jenkinsfile vendored
View File

@ -1,5 +1,5 @@
properties([
buildDiscarder(logRotator(numToKeepStr: '20'))
buildDiscarder(logRotator(numToKeepStr: '10'))
])
def deploy() {