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'
      }
    }
    }
  }
}
===================

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/3235dca6-6a86-4462-8c6d-c915433aea6b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to