So i have several parts to this project - one of which is an opencv build which can take some time. I've made another build dependent on this as a snapshot build with the setting "Do not run new build if there is a suitable one".
The opencv build is only triggered on commits to the relevant directory (using build triggers) And my other build is set up similarly (based on another folder)
BUT as they are both from the same repository, the trigger of one causes a trigger of the other. It seems that 'suitable' does not consider build triggers, but only commit number. Is there any way to set this up so that the dependent build will not be rebuilt every time and only when it would trigger anyway (i still need the dependency between both)
Thanks.