Re: loop over branches

2020-12-05 Thread Jeremy Mordkoff
I get that that is a better way of limiting the number of instances than using executor counts. Thanks for that. I still don't see a good way to schedule the jobs. Set a cron entry in the job so they all get scheduled once a day and then let all but one sit idle waiting on the resource lock?

Re: loop over branches

2020-12-04 Thread Arnaud bourree
Hello, I've setup something similar. We have one test platform and like you want to run tests on per branch. I use lock resource plugin to run tests in exclusive stage. Regards. Arnaud Le mar. 1 déc. 2020 à 22:11, jeremy mordkoff a écrit : > We have too many tests, so we have broken them up

loop over branches

2020-12-01 Thread jeremy mordkoff
We have too many tests, so we have broken them up into three groups. One group that runs after each checkin and one group that runs once a day on any branch with changes and one group that I would like to limit to one instance at a time but still test any active branch. What is the best way