ジョブ内でグローバルbefore_script
を空のbefore_script
で上書きすることはできますか?
はい、ローカルbefore_script
はグローバルbefore_script
をオーバーライドします。 .yml sintaxを有効に保つには、何もしないコマンドを使用します。
before_script:
- global before script
job:
before_script:
- ''
空の配列表記を使用する必要があります。
before_script:
- global before script
job:
before_script: []
script:
- test