Enable parallel stages on Jenkins (#476)

This commit is contained in:
David Chavez 2022-06-18 15:43:16 +02:00 committed by GitHub
parent 8d4b15325a
commit 1763d0bfce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View file

@ -7,6 +7,8 @@ pipeline {
}
stages {
stage('Build SoH') {
parallel {
stage ('Build Windows') {
options {
timeout(time: 20)
@ -120,4 +122,6 @@ pipeline {
}
}
}
}
}
}