David Crouch
David Crouch
this feature would still be of use: select a named changelist which checked out files will be automatically added to (with the changelist itself automatically created if it doesn't exist)...
Feature request submitted: #72
I did not realize that lock() could be performed in options to lock the whole build. That actually satisfies some of my use cases. I think it would still be...
@abayer sorry, I was ambiguous there. I meant in the context of using getLock(): ``` pipeline { stages { stage('locking') { steps { getLock resource: "my_resource" } } }
Or, another way of asking, is it a necessity that using getLock/releaseLock imposes deadlock management on the user? I would think that this would lead to most uses ending with...
Ah, ok. My own personal use cases would all call for the lock to be cleaned up at the end of the job (whether by myself or auto-cleaned). I don't...