-
New Feature
-
Resolution: Done
-
Major
Useful to give a label to one or more steps that are otherwise opaque in the log.
stage('Deploying') { sh './deploy.sh --some-long-arguments' }
FlowGraphTable should hide the body of the label step by default.
Alternatives considered:
sh script: './deploy.sh', label: 'Deploying'
which does not scale well as a design (labeling should be orthogonal to step definitions); or implicit label creation when Groovy label expressions are encountered:
LABEL: sh '/bin/perl abc def'
which may break down:
FOO:
def x = 1;
for (...) {
...
}
- blocks
-
JENKINS-37323 Ensure that Pipeline Graph can handle stage blocks
- Closed
- depends on
-
JENKINS-26156 Erroneous handling of BodyInvoker.withDisplayName
- Resolved
- is blocking
-
JENKINS-28183 Hard killed job's stage blocks stage in following jobs
- Resolved
-
JENKINS-33185 Visualize parallel steps within a Pipeline Stage
- Open
-
JENKINS-30088 Clean up step display
- Resolved
-
JENKINS-28293 Display more information about Pipeline steps
- Resolved
- is duplicated by
-
JENKINS-36933 Name or alias Shell Script Step (sh)
- Resolved
-
JENKINS-26602 titles for build steps
- Resolved
-
JENKINS-27210 Ability to add a descriptive text to a shell script execution that gets displayed in the Running Steps perspective
- Resolved
-
JENKINS-34980 Add a description attribute for each step to be show in stage log overview
- Resolved
- is related to
-
JENKINS-27395 distinguish test reports filed from different parts of workflow
- Resolved
-
JENKINS-29892 Block of stages functioning as a concurrency unit
- Resolved
-
JENKINS-26987 Hiding certain steps from the "Running Steps" tree
- Resolved
-
JENKINS-26522 Annotated block/stage status
- Closed
-
JENKINS-28119 Link to log of failed step
- In Progress
-
JENKINS-26132 Executor should show the current stage the flow run is in
- Resolved
-
JENKINS-27394 Render stages in logs as collapsible sections
- Resolved
- links to