This commit is contained in:
2021-02-19 04:11:42 +01:00
parent 1196d2f8b0
commit 8949bdba86

6
Jenkinsfile vendored
View File

@@ -17,6 +17,8 @@ pipeline {
sh '''mkdir $WORKSPACE/REL''' sh '''mkdir $WORKSPACE/REL'''
} }
} }
}
parallel {
stage("Image Configs") { stage("Image Configs") {
matrix { matrix {
axes { axes {
@@ -42,7 +44,7 @@ pipeline {
} }
} }
// all the stages here will run in parallel // all the stages here will run in parallel
parallel { stages {
stage('Build image') { stage('Build image') {
steps { steps {
//echo "Do Build for ${$ImgRelease} - ${ImgVariant}" //echo "Do Build for ${$ImgRelease} - ${ImgVariant}"
@@ -55,6 +57,8 @@ pipeline {
} }
} }
} }
}
stages {
stage('Finish') { stage('Finish') {
steps { steps {
// Save generated files // Save generated files