perl - Running parallel jobs in Jenkins -


i'm using jenkins builds, , wrote test scripts need run after compilation of build. want save time, have run test scripts parallel. how can that?

edit: ok, understand know need separate job each test (for 4 tests need 4 jobs, right?) so, did that, , via parent job ran jobs. (using "build other projects" plugin). didn't managed aggregate results (using aggregate downstream test results). parent job exits before downstream jobs finished. shall do?

thanks.

you can use multi-job plugin. allow run multiple jobs in parallel , parent job wait sub jobs completed. parent jobs status can determined sub jobs status.

https://wiki.jenkins-ci.org/display/jenkins/multijob+plugin


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -

php - Accessing static methods using newly created $obj or using class Name -