I have two nodes defined with the same label.
NodeA (label mygit)
NodeB (label mygit)
I am using the build flow plugin and have a script that gets called from the main build job that performs the following
build(joba.sh)
parallel{
{build (jobb.sh),
build (jobc.sh),
build (jobd.sh)}
I have told each build to use the label mygit during the build process.
I need a build that starts on one node to finish on one node and not farm out any jobs to the other labeled mygit node (If I start on NodeA everything finishes on NodeA).
Does anyone have any ideas on why my builds are not staying on the one Node they start on to completion?
thanks!