updated jenkinsfile

This commit is contained in:
2021-02-19 02:59:30 +01:00
parent 86821c70b9
commit 9f00f5e1cf

18
Jenkinsfile vendored
View File

@@ -1,14 +1,17 @@
pipeline { pipeline {
agent { label 'LXCBuilder' } agent { label 'LXCBuilder' }
options {
buildDiscarder(logRotator(numToKeepStr: '2', artifactNumToKeepStr: '1'))
}
matrix { matrix {
axes { axes {
axis { axis {
name 'ImgRelease' name 'ImgRelease'
values '3.13 edge' values '3.13 edge'
} }
axis { axis {
name 'ImgVariant' name 'ImgVariant'
values 'default extended' values 'default extended'
} }
} }
excludes { excludes {
@@ -23,10 +26,6 @@ pipeline {
} }
} }
} }
}
options {
buildDiscarder(logRotator(numToKeepStr: '2', artifactNumToKeepStr: '1'))
}
stages { stages {
stage('Prepare') { stage('Prepare') {
steps { steps {
@@ -62,7 +61,6 @@ pipeline {
//emailext attachLog: true,body: '$DEFAULT_CONTENT', subject: '$DEFAULT_SUBJECT', to: 'bram@bprieshof.nl' //emailext attachLog: true,body: '$DEFAULT_CONTENT', subject: '$DEFAULT_SUBJECT', to: 'bram@bprieshof.nl'
} }
} }
}
} }