Details
-
Improvement
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
None
Description
If I have 3 jobs.
A -> B -> C
If everything runs fine i'll have
A(1) -> B(1) -> C(1)
But if i have b failing then i need to start over with job A to have my pipeline updated.
I would prefer a solution where i have.
A(1) -> B(2) etc. if the B(1) failed but B(2) succeeded.
Attachments
Issue Links
- is related to
-
JENKINS-25298 Able to rerun jobs from view
-
- Closed
-
One way is to use Rebuild Plugin (https://wiki.jenkins-ci.org/display/JENKINS/Rebuild+Plugin) to rebuild B. Pipeline view will be updated and show B(2).
Have plans to have a rebuild button in the view for failed tasks.