skip win-RS1 on PRs unless the checkbox is checked
Signed-off-by: Andrew Hsu <andrewhsu@docker.com>
Signed-off-by: Tibor Vass <tibor@docker.com>
(cherry picked from commit 039eb05ac8
)
Signed-off-by: Andrew Hsu <andrewhsu@docker.com>
This commit is contained in:
parent
ca22ec44ba
commit
36fc8f5809
1 changed files with 6 additions and 2 deletions
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
|
@ -12,7 +12,7 @@ pipeline {
|
||||||
booleanParam(name: 'amd64', defaultValue: true, description: 'amd64 (x86_64) Build/Test')
|
booleanParam(name: 'amd64', defaultValue: true, description: 'amd64 (x86_64) Build/Test')
|
||||||
booleanParam(name: 's390x', defaultValue: true, description: 'IBM Z (s390x) Build/Test')
|
booleanParam(name: 's390x', defaultValue: true, description: 'IBM Z (s390x) Build/Test')
|
||||||
booleanParam(name: 'ppc64le', defaultValue: true, description: 'PowerPC (ppc64le) Build/Test')
|
booleanParam(name: 'ppc64le', defaultValue: true, description: 'PowerPC (ppc64le) Build/Test')
|
||||||
booleanParam(name: 'windowsRS1', defaultValue: true, description: 'Windows 2016 (RS1) Build/Test')
|
booleanParam(name: 'windowsRS1', defaultValue: false, description: 'Windows 2016 (RS1) Build/Test')
|
||||||
booleanParam(name: 'windowsRS5', defaultValue: true, description: 'Windows 2019 (RS5) Build/Test')
|
booleanParam(name: 'windowsRS5', defaultValue: true, description: 'Windows 2019 (RS5) Build/Test')
|
||||||
booleanParam(name: 'skip_dco', defaultValue: false, description: 'Skip the DCO check')
|
booleanParam(name: 'skip_dco', defaultValue: false, description: 'Skip the DCO check')
|
||||||
}
|
}
|
||||||
|
@ -689,7 +689,11 @@ pipeline {
|
||||||
stage('win-RS1') {
|
stage('win-RS1') {
|
||||||
when {
|
when {
|
||||||
beforeAgent true
|
beforeAgent true
|
||||||
expression { params.windowsRS1 }
|
// Skip this stage on PRs unless the windowsRS1 checkbox is selected
|
||||||
|
anyOf {
|
||||||
|
not { changeRequest() }
|
||||||
|
expression { params.windowsRS1 }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
environment {
|
environment {
|
||||||
DOCKER_BUILDKIT = '0'
|
DOCKER_BUILDKIT = '0'
|
||||||
|
|
Loading…
Reference in a new issue