Details
-
Task
-
Status: Resolved (View Workflow)
-
Major
-
Resolution: Duplicate
Description
Is there a way to get which parallel branch is failing and get more details on the steps being executed/logs of that failure.
Other objective is to compile list of all failed branches.
def list=[ "abc" , "def" , "xyz" , "pqr" ] def branches = [:] def listLength=list.size() for (i=0;i<listLength;i++) { def excl = list.get(i); branches[excl]={ node (){ sh """echo hello $excl""" scm sh " ant build.xml" mail } } } try { parallel branches } catch(err) { print err <GET_PARALLEL_BRANCH_NAME/FAILURE_DETAILS> }
Attachments
Issue Links
- duplicates
-
JENKINS-28119 Link to log of failed step
-
- In Progress
-
- relates to
-
JENKINS-25894 Ugly reporting of errors from parallel step
-
- Resolved
-
As to the originally proposed syntax, no, this was deleted for good reason in
JENKINS-25894.