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

11
Jenkinsfile vendored
View File

@ -1,8 +1,3 @@
pipeline {
agent none
stages {
stage("Build") {
failFast true
def parallel_stages() { def parallel_stages() {
parallel { parallel {
stage("Release/SSE") { stage("Release/SSE") {
@ -827,8 +822,12 @@ pipeline {
} }
} }
} }
pipeline {
agent none
stages {
stage("Build") {
failFast true
parallel_stages() parallel_stages()
} }
} }
} }