You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Jenkins Users
Hi All,
Through Blue Ocean Plugin created a pipeline job and want to execute the Jobs inside the "Jenkinsfile" in parallel .
Need help on this ..here is the code which is executing sequentally
============
pipeline {
agent any
parallel {
stages {
stage('Init') {
steps {
echo 'Hello Testing'
build 'TEST'
}
}
stage('JOB1') {
steps {
build 'TEST1'
}
}
stage('JOB2') {
steps {
build 'TEST2'
}
}
}
}
}
===================
Ivan Fernandez Calvo
unread,
Apr 4, 2019, 1:23:38 PM4/4/19
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Jenkins Users
it is incorrect, you have a stages directive inside parallel so you only have one stage filled with serial stages, the following pipeline is correct (if I do not make any pitfall with the {) see https://jenkins.io/doc/book/pipeline/syntax/#parallel
pipeline {
agent any
parallel {
Ivan Fernandez Calvo
unread,
Apr 4, 2019, 1:27:33 PM4/4/19
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message