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

4
Jenkinsfile vendored
View File

@@ -7,6 +7,8 @@ pipeline {
}
stages {
stage('Build SoH') {
parallel {
stage ('Build Windows') {
options {
timeout(time: 20)
@@ -121,3 +123,5 @@ pipeline {
}
}
}
}
}