Re: Buildflow/workflow executes code block till next build step even after failure

2016-03-19 Thread Christopher Orr
Sorry, I don't have a good answer, but AFAIK the Build Flow plugin isn't really in development any more — you should be able to achieve what you're looking for with the Pipeline plugin: https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Plugin Regards, Chris On 13/03/16 09:20, Jayan M N wro

Buildflow/workflow executes code block till next build step even after failure

2016-03-13 Thread Jayan M N
Here is my FlowScript. `dev.AlwaysFail` is job that will always fail. def afterFail=false; def afterFail_2= false; guard { b = build( "dev.AlwaysFail" ) out.println ("must not appear") //executed even after the error. afterFail = true; //executed even after the error. b = buil