Update Jenkinsfile

This commit is contained in:
Konstantinos Margaritis 2022-05-04 16:30:22 +03:00 committed by GitHub
parent e71fb5cfeb
commit 2c78b770ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

15
Jenkinsfile vendored
View File

@ -1,9 +1,4 @@
pipeline {
agent none
stages {
stage("Build") {
failFast true
def parallel_stages() {
def parallel_stages() {
parallel {
stage("Release/SSE") {
agent { label "x86" }
@ -826,9 +821,13 @@ pipeline {
}
}
}
}
}
pipeline {
agent none
stages {
stage("Build") {
failFast true
parallel_stages()
}
}
}