Re: Running build across slave nodes

2015-10-05 Thread James Nord
workflow with a parallel fork will give you this if you can do the "split" (that is you will only have one workflow build). On Sunday, October 4, 2015 at 10:20:05 PM UTC+1, uscen...@gmail.com wrote: > > I am using

Re: Running build across slave nodes

2015-10-05 Thread uscengineer
Thanks Victor. The feedback is always appreciated. Selenium Plugin uses the old selenium grid and server setup. Our tests are basically kicked off from the slaves and run on Sauce Labs. The grid is not really needed unless it would provide a performance boost. I'll take a look at the other

Re: Running build across slave nodes

2015-10-05 Thread Victor Martinez
Hi, Let me also add more details, if you don't mind :) There are different approaches but as far as I see, if you use selenium, have you considered to use https://wiki.jenkins-ci.org/display/JENKINS/Selenium+Plugin ? You can use different Configuration as Code paradigms but in any case you

Re: Running build across slave nodes

2015-10-05 Thread uscengineer
Thanks James. I was considering that but was not sure if that would work. Definitely will take a look. On Monday, October 5, 2015 at 11:31:48 AM UTC-7, James Nord wrote: > > workflow > > with a parallel fork will give you

Running build across slave nodes

2015-10-04 Thread uscengineer
I am using jenkins to run selenium tests in ruby. There are 4 nodes: master + 3 slaves The current build runs all my tests on one slave. Is there a way to run one build and have the tests split across the slave nodes? I know I can split the tests into groups and run each group as a build but