Hello, exist a way to not add a job into build queue if the same job is currently running? Config is simplified and is running once per day: A->B->C where C is triggered by upper job B or by time trigger, B is triggered by upper job A and A is triggered by SCM poll. If no change in SCM then A and B will not run, but will run C (because of time trigger, it takes the previous artifacts of A and B), but if exist some change in SCM then A and B will run, which then trigger and run C (longer run) and in this case I do not want to insert C into build queue (and run it) if time trigger occurs. I want to run C only once per day.
Thanks. With kind regards, Gabriel.