Jenkinsfile: Added , spiltting ImgVariantList in loop

This commit is contained in:
2022-07-03 23:43:17 +02:00
parent 5be7902706
commit 7f70a2d06b
2 changed files with 2 additions and 2 deletions

View File

@@ -44,7 +44,7 @@ pipeline {
steps{
script{
//Run build for requested variants
for(ImgVariant in ImgVariantList){
for(ImgVariant in ImgVariantList.split(',')){
env.ZX_Multicore = ZX_Multicore
env.ZX_Cores = ZX_Cores
env.ImgVariant = ImgVariant

View File

@@ -44,7 +44,7 @@ pipeline {
steps{
script{
//Run build for requested variants
for(ImgVariant in ImgVariantList){
for(ImgVariant in ImgVariantList.split(',')){
env.ZX_Multicore = ZX_Multicore
env.ZX_Cores = ZX_Cores
env.ImgVariant = ImgVariant