Skip to content

Commit e45c0ad

Browse files
committed
jobs/kola-*: trim artifacts to 30
Keeping around the test console logs of the last 100 builds seems excessive. Let's trim it back to 30 to match bump-lockfile. This should help reduce our storage requirements (each kola job right now takes about 1.2G- 1.4G).
1 parent 4edb8ab commit e45c0ad

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

jobs/kola-aws.Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ properties([
3434
]),
3535
buildDiscarder(logRotator(
3636
numToKeepStr: '100',
37-
artifactNumToKeepStr: '100'
37+
artifactNumToKeepStr: '30'
3838
)),
3939
durabilityHint('PERFORMANCE_OPTIMIZED')
4040
])

jobs/kola-azure.Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ properties([
3434
]),
3535
buildDiscarder(logRotator(
3636
numToKeepStr: '100',
37-
artifactNumToKeepStr: '100'
37+
artifactNumToKeepStr: '30'
3838
)),
3939
durabilityHint('PERFORMANCE_OPTIMIZED')
4040
])

jobs/kola-gcp.Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ properties([
3434
]),
3535
buildDiscarder(logRotator(
3636
numToKeepStr: '100',
37-
artifactNumToKeepStr: '100'
37+
artifactNumToKeepStr: '30'
3838
)),
3939
durabilityHint('PERFORMANCE_OPTIMIZED')
4040
])

jobs/kola-openstack.Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ properties([
3434
]),
3535
buildDiscarder(logRotator(
3636
numToKeepStr: '100',
37-
artifactNumToKeepStr: '100'
37+
artifactNumToKeepStr: '30'
3838
)),
3939
durabilityHint('PERFORMANCE_OPTIMIZED')
4040
])

0 commit comments

Comments
 (0)