fix large pipeline error

This commit is contained in:
Konstantinos Margaritis 2022-05-04 16:26:02 +03:00
parent fce10b53a0
commit b3d7174a93

3
Jenkinsfile vendored
View File

@ -3,6 +3,7 @@ pipeline {
stages {
stage("Build") {
failFast true
def parallel_stages() {
parallel {
stage("Release/SSE") {
agent { label "x86" }
@ -826,6 +827,8 @@ pipeline {
}
}
}
parallel_stages()
}
}
}