We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 601798f commit 8b7aaf1Copy full SHA for 8b7aaf1
1 file changed
Jenkinsfile
@@ -375,7 +375,9 @@ pipeline {
375
// Build Docker container for push to LS Repo
376
stage('Build-Single') {
377
when {
378
- environment name: 'MULTIARCH', value: 'false'
+ expression {
379
+ env.MULTIARCH == 'false' || params.PACKAGE_CHECK == 'true'
380
+ }
381
environment name: 'EXIT_STATUS', value: ''
382
}
383
steps {
@@ -400,7 +402,10 @@ pipeline {
400
402
// Build MultiArch Docker containers for push to LS Repo
401
403
stage('Build-Multi') {
404
- environment name: 'MULTIARCH', value: 'true'
405
+ allOf {
406
+ environment name: 'MULTIARCH', value: 'true'
407
+ expression { params.PACKAGE_CHECK == 'false' }
408
409
410
411
parallel {
0 commit comments