Set Jenkins options

This commit is contained in:
Till Wegmueller 2021-04-25 21:20:35 -03:00
parent a058692822
commit 6093e8153f

13
Jenkinsfile vendored
View file

@ -1,5 +1,16 @@
pipeline {
agent any
agent {
node {
label 'buildserver'
}
}
options {
buildDiscarder logRotator(
daysToKeepStr: '1',
numToKeepStr: '3'
)
}
stages {
stage('Build') {