我的.gitlab-ci.yml
中有这样的任务deploy_all:
stage: deploy
script:
- cp project/target/jnlp/* html/jnlp/
tags:
- client:deploy-all
除了不必要的git存储库获取外,一切正常。以下是从跑步者的日志中提取
Running with gitlab-ci-multi-runner 9.1.0 (0118d89)
...
Fetching changes...
HEAD is now at 8dfc104 Update .gitlab-ci.yml
...
Job succeeded
这里不需要存储库,因为我只需要来自其他任务的工件。是否可以禁用此行为?
答案 0 :(得分:1)
我找到了解决方案:
在构建脚本中禁用git checkout(通过添加变量)
deploy_all:
variables:
GIT_STRATEGY: none
GIT_CHECKOUT: "false"
stage: deploy
script:
- cp project/target/jnlp/* html/jnlp/
tags:
- client:deploy-all