Details
-
Improvement
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
None
Description
Useful if you have jobs that should be excluded from pipeline or you want to split sequence of jobs into multiple pipelines.
Example flow:
BUILD -> TEST -> DEPLOY DEV -> DEPLOY PROD
- view BUILD
BUILD -> TEST
- view DEPLOY
DEPLOY DEV -> DEPLOY PROD
Attachments
Issue Links
- is related to
-
JENKINS-26210 Configure Jobs to be hidden from the delivery pipeline
-
- Resolved
-
I think I've got a decent first crack at this. Here's my strategy:
I added a lastJobRegex where I terminate searching for jobs/tasks when a task id matches the specified regex.
I'm also looking at adding a hideJobRegex to satisfy
JENKINS-26210.Thoughts? PR coming shortly (hopefully).