Hi,
I've installed the beta version of Workflow plugin
(https://github.com/jenkinsci/workflow-plugin)
I created one Workflow job with the following DSL:
def myClosures = [:]
myClosures['Project1'] = {
println "in myClosure of Project1";
run_on_node
yes, I wasn't aware about configuring "# of executors" for a node.
I tried that and it works perfectly.
Thanks much for your quick response!
--
View this message in context:
http://jenkins-ci.361315.n4.nabble.com/Configure-concurrent-builds-per-node-tp4726068p4726166.html
Sent from the Jenkins
Hi,
I'm using BuildFlow plugin and I've setup one parent job which will call
another build job.
Here's the flow DSL for the parent job:
childJobName = "BFChildJob"
def myClosures = []
(0..100).each { num ->
def project = "Project${num}"
def myClosur