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 myClosure = { 
                              build(childJobName,
                                    project_name: project
                                 )
                            }
            myClosures.add( myClosure );
        }
        parallel(myClosures);

The child job is called "BFChildJob" and in there I run one shell script
passing that project_name param.  And I've enabled on "Execute concurrent
builds if necessary"

The problem I have is the the parallel() seems to run only 1 or 2 concurrent
builds on each node.
Is there a way to configure so that it will run 8 concurrent builds per
node?

Thanks in advance for you help!




--
View this message in context: 
http://jenkins-ci.361315.n4.nabble.com/Configure-concurrent-builds-per-node-tp4726068.html
Sent from the Jenkins users mailing list archive at Nabble.com.

-- 
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].
For more options, visit https://groups.google.com/d/optout.

Reply via email to