mirror of
https://github.com/linuxserver/docker-swag.git
synced 2025-07-29 17:38:44 -04:00
Bot Updating Templated Files
This commit is contained in:
parent
1ae82126d8
commit
d19e63a447
1 changed files with 7 additions and 2 deletions
7
Jenkinsfile
vendored
7
Jenkinsfile
vendored
|
@ -375,7 +375,9 @@ pipeline {
|
||||||
// Build Docker container for push to LS Repo
|
// Build Docker container for push to LS Repo
|
||||||
stage('Build-Single') {
|
stage('Build-Single') {
|
||||||
when {
|
when {
|
||||||
environment name: 'MULTIARCH', value: 'false'
|
expression {
|
||||||
|
env.MULTIARCH == 'false' || params.PACKAGE_CHECK == 'true'
|
||||||
|
}
|
||||||
environment name: 'EXIT_STATUS', value: ''
|
environment name: 'EXIT_STATUS', value: ''
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
|
@ -400,7 +402,10 @@ pipeline {
|
||||||
// Build MultiArch Docker containers for push to LS Repo
|
// Build MultiArch Docker containers for push to LS Repo
|
||||||
stage('Build-Multi') {
|
stage('Build-Multi') {
|
||||||
when {
|
when {
|
||||||
|
allOf {
|
||||||
environment name: 'MULTIARCH', value: 'true'
|
environment name: 'MULTIARCH', value: 'true'
|
||||||
|
expression { params.PACKAGE_CHECK == 'false' }
|
||||||
|
}
|
||||||
environment name: 'EXIT_STATUS', value: ''
|
environment name: 'EXIT_STATUS', value: ''
|
||||||
}
|
}
|
||||||
parallel {
|
parallel {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue