I have a pipeline build with next stages:
The result of job C may be unsuccessful, but it should not influence on status of the Build. This should be blue:
Is it possible to do this in pipeline plugin?
You can use propagate: false
Try the following code:
stage 'C'
build job: 'Job that fails', propagate: false