Question: Is there a way to block a build stream if another build stream is in the process of building?
Here is what I'm trying to do. I have two build streams that contain multiple jobs. I can block the jobs up or down stream a given stream. I cannot however block a build stream if the other build stream is building.
Here is my setup:
Build Stream 1: A1 -> B1 -> C1
Build Stream 2: A2 -> B2 -> C2
Job A1 and A2 are setup using the SCM plugin to poll separate locations in our repo. So a build can be trigger at any time it finds a change. The build streams should be treated independently but block if the other have jobs building.
I've tried Build Blocker Plug-in but problem is that it only blocks if a job or jobs are currently building. It doesn't seem to care about the other builds waiting in the build queue.
I'm limited on the number of resources that are provided to me so I'm having to double up on our builds.
