deploy: 48e3c38f2a6cf08168bd0448911807c75f929e49

This commit is contained in:
jakubgs 2022-06-08 14:02:01 +00:00
parent d1b0a26d16
commit 078f4a879c
2 changed files with 5 additions and 1 deletions

View File

@ -28,7 +28,9 @@ pipeline {
options {
timestamps()
/* manage how many builds we keep */
/* Prevent Jenkins jobs from running forever */
timeout(time: 30, unit: 'MINUTES')
/* Limit builds retained. */
buildDiscarder(logRotator(
numToKeepStr: '3',
daysToKeepStr: '30',

View File

@ -3,6 +3,8 @@ pipeline {
options {
timestamps()
/* Prevent Jenkins jobs from running forever */
timeout(time: 20, unit: 'MINUTES')
/* manage how many builds we keep */
buildDiscarder(logRotator(
numToKeepStr: '10',