| Ivan Fernandez Calvo Thanks for the RFE. I'm not quite sure what ignoreErrors is doing in your example, it looks like a block scope step because it is in options, but by your description it sounds like a basic step like unstable? If I understand correctly, maybe better to just add option to the unstable step, so it could be used like this:
unstable(message: "Release candidate was not uploaded", setBuildResult: false)
If you mean for ignoreErrors to act like catchError(buildResult: 'SUCCESS', stageResult: 'UNSTABLE'), I think you could just put that in options today, like this (untested):
options {
catchError(message: 'Release Candidate was not uploaded', buildResult: 'SUCCESS', stageResult: 'UNSTABLE')
}
|