Hello,
For our integration process we desire to have a queue where all developers start the pipeline identifying the branch they want to merge, in a second pipeline (slower than the first one) is where the build and tests will be done and if everything is ok the branch will merge. The problem is that this queue system skip some executions of the first pipeline in the second one. Here an example:
test_a is the queue pipeline that runs really fast, test_b is the main pipeline that should run for every execution of test_a. test_b in this example is just a long sleep. The issue is when I run test_a multiple times, in this case test_b skip some executions of test_a.
Here the history of both pipelines:
As you can see by the Revision in pipeline test_b history, the run 18 of test_a didn't triggered test_b.
I've seen a lot of people suggesting this exactly approach for similar problems, so I don't know what I'm doing wrong in here. Anyone can help me?
Thanks!