Im trying to set up a gitlab pipeline, so that certain exit_codes are okay for a script im executing. I have tried both shell and a ruby script, but both seem to have the same behaviour.
As you can see, I am just executing the script and nothing more, my expectation would be, that the last script executed is used a the exit status for the job.
In the script im only calling "exit 64", which should be a "allowed failure" in that case, the pipeline log however says that the job failed because of exit code 1:
How do I get gitlab to accept the exit code of this (or a ruby) script as the job exit code?

