Is it possible to trigger a 'Stopped' status within pipelines during a build? I am trying to gracefully stop a build if certain criteria is not met without having it give the 'Failure' status.
Hello @Eric_Wingate
That seems a pretty reasonable question and I didn't have tried that in pipelines before. Thanks to you I tested it now =]
You will need to use the command
exit 0
wherever you decide if the condition to stop is met.
You could use a bash if-then-else. e.g.
var=stop
if [ $var == 'stop' ]; then exit 0; fi
Please let me know if that solves your case or if there is something else I'm missing.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.