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 0c86208 commit def98dbCopy full SHA for def98db
Jenkinsfile
@@ -64,9 +64,11 @@ def parallelStages = [failFast: false]
64
node(resolvedAgentLabel) {
65
timeout(time: 60, unit: 'MINUTES') {
66
checkout scm
67
- if (imageType == "linux") {
68
- stage('Prepare Docker') {
+ stage('Prepare Docker') {
+ if (isUnix()) {
69
sh 'make docker-init'
70
+ } else {
71
+ powershell '& ./build.ps1 docker-init'
72
}
73
74
// This function is defined in the jenkins-infra/pipeline-library
0 commit comments