-
Bug
-
Resolution: Unresolved
-
Major
-
None
To reproduce:
stage ('sample') { echo 'do something' } input 'I am invisible'
Run the above build, you will not see a popup for the input step, because it's not attached to a stage.
To solve this, we need to attach any in-progress input steps from the run to the last stage so notifications are visible.
May require some custom logic in the ChunkVisitor on the atomNode.
- links to
We closed a similar ticket for Blue Ocean (
JENKINS-35836) and recommended users to wrap all their steps within stages for correct visualization. It is worth noting that this situation is impossible to get into if using Declarative Pipeline syntax as all steps must belong to a stage.