Is it possible to override the global before_script
with an empty before_script
within a job?
Yes, the local before_script
overrides the global before_script
.
To keep the .yml sintax valid, use a command that does nothing.
before_script:
- global before script
job:
before_script:
- ''