mirror of https://github.com/OpenVidu/openvidu.git
Jenkinsfile: fix parallel syntax
parent
1d53c87500
commit
fa3d4f6097
|
@ -59,8 +59,7 @@ node('container') {
|
|||
}
|
||||
|
||||
stage('Artifacts build') {
|
||||
parallel {
|
||||
|
||||
parallel openviduBrowser: {
|
||||
stage('OpenVidu Browser build') {
|
||||
sh(script: '''#!/bin/bash -xe
|
||||
cd openvidu
|
||||
|
@ -74,7 +73,7 @@ node('container') {
|
|||
git checkout -f $OPENVIDU_COMMIT
|
||||
'''.stripIndent())
|
||||
}
|
||||
|
||||
}, openviduNodeClient: {
|
||||
stage('OpenVidu Node Client build') {
|
||||
sh(script: '''#!/bin/bash -xe
|
||||
cd openvidu
|
||||
|
@ -88,7 +87,7 @@ node('container') {
|
|||
git checkout -f $OPENVIDU_COMMIT
|
||||
'''.stripIndent())
|
||||
}
|
||||
|
||||
}, openviduJavaClient: {
|
||||
stage('OpenVidu Java Client build') {
|
||||
sh(script: '''#!/bin/bash -xe
|
||||
cd openvidu
|
||||
|
@ -103,7 +102,6 @@ node('container') {
|
|||
git checkout -f $OPENVIDU_COMMIT
|
||||
'''.stripIndent())
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue