Merge pull request #105 from VectorCamp/bugfix/jenkins

fix large pipeline error
This commit is contained in:
Konstantinos Margaritis 2022-05-04 16:27:22 +03:00 committed by GitHub
commit e71fb5cfeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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()
}
}
}