Skip to content

Commit

Permalink
Merge pull request #73 from slide/windocker
Browse files Browse the repository at this point in the history
Add build of Windows container
  • Loading branch information
slide committed Sep 24, 2019
2 parents f58fdfb + 4f96779 commit 692b4a4
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,24 @@ pipeline {
}

stages {
stage('Prepare Workspace') {
steps {
sh './build.sh'
stage('Build') {
parallel {
stage('Windows') {
agent {
label "windock"
}
steps {
powershell "& ./build.ps1"
}
}
stage('Linux') {
agent {
label "docker"
}
steps {
sh "./build.sh"
}
}
}
}
}
Expand Down

0 comments on commit 692b4a4

Please sign in to comment.