-
Bug
-
Resolution: Unresolved
-
Minor
-
Jenkins 2.46.1, conditional-buildstep@1.3.5, Ubuntu 16.04, Java 1.7.0_79-b15
Using run() in runner causes the error:
job('example') { steps { // This is a single step conditional singleConditionalBuilder { buildStep { shell { command("ps -ef") } } condition { alwaysRun() } runner { run() } } } }
If I change it to fail() there's no error.