diff --git a/Jenkinsfile b/Jenkinsfile index e96222e..0e31f80 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,14 +1,17 @@ pipeline { agent { label 'LXCBuilder' } + options { + buildDiscarder(logRotator(numToKeepStr: '2', artifactNumToKeepStr: '1')) + } matrix { axes { axis { - name 'ImgRelease' - values '3.13 edge' + name 'ImgRelease' + values '3.13 edge' } axis { - name 'ImgVariant' - values 'default extended' + name 'ImgVariant' + values 'default extended' } } excludes { @@ -23,10 +26,6 @@ pipeline { } } } - } - options { - buildDiscarder(logRotator(numToKeepStr: '2', artifactNumToKeepStr: '1')) - } stages { stage('Prepare') { steps { @@ -62,7 +61,6 @@ pipeline { //emailext attachLog: true,body: '$DEFAULT_CONTENT', subject: '$DEFAULT_SUBJECT', to: 'bram@bprieshof.nl' } } - - + } } \ No newline at end of file