I’ve read something on allowing failures for steps in pipelines in the closed github issues. But I can’t seem to get it to work.
I have a step which can fail but when it fails I want it to proceed the build as normal.
I’ve tried err_ignore
but it doesn’t seem to accept it.
pipeline:
mystep:
image: debian
err_ignore: true
commands:
- /bin/false
This gives the error: Cannot configure both commands and custom attributes [err_ignore]
Is this intended? Is this somewhere documented?