А pipeline в дженкинс у всех заставляет дженкинс уйти в ребут если шаг input весит больше часа?
Неожиданно мануал помог.
Don’t: Use input within a node block
While you can put an input statement within a node block, you definitely shouldn’t.
Why? The input element pauses pipeline execution to wait for an approval - either automated or manual. Naturally these approvals could take some time. The node element, on the other hand, acquires and holds a lock on a workspace and heavy weight Jenkins executor - an expensive resource to hold onto while pausing for input.
So, create your inputs outside your nodes.
Example:
stage 'deployment'
input 'Do you approve deployment?'
node{
//deploy the things
}
А я то как раз input в node поместил