Jenkins – Creating Jobs for Multijob Plugin in Jenkins

Jenkinsjenkins-plugins

I had a requirement for executing jobs in parallel and came across this plugin called MultiJob plugin for Jenkins.

After going through documentation, i created phases and gave job names. But where do i create job basically.I mean the script ,build step and post build step for job "TaskToExecute1" and "TasktoExecute2".

Thanks,
VVP
enter image description here

Best Answer

You need to create the jobs that are referenced from the "Job Name".

So in your example, create a separate job/project (e.g. "New Item" -> "Freestyle Project") and call it TaskToExecute1. Then you can add a build step to that new TaskToExecute job/project.

Related Topic