|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
- [JIRA] (JENKINS-15900) A build failure i... [email protected] (JIRA)
- [JIRA] (JENKINS-15900) A build fail... [email protected] (JIRA)
- [JIRA] (JENKINS-15900) A build fail... [email protected] (JIRA)
- [JIRA] (JENKINS-15900) A build fail... [email protected] (JIRA)

I have found a workaround:
guard { build ("test-a") // Fast running jobs def fast = parallel ( { build("test-b") }, { build("test-c") } ) // Slow running jobs def fastFailed = fast*.getResult()*.toString().any { result -> !"SUCCESS".equals(result) } if (!fastFailed) { parallel ( { build("test-d") }, { build("test-e") } ) } } rescue { build ("test-f") }