作者:弥囜_550 | 来源:互联网 | 2022-12-29 21:13
我的.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
这里不需要存储库,因为我只需要其他任务的工件。是否可以禁用此行为?
1> Wojciech Wir..:
我找到了解决方案:
将gitlab升级到版本10.x,手册在这里https://docs.gitlab.com/runner/install/linux-repository.html
在构建脚本中禁用git checkout(通过添加变量)
deploy_all:
variables:
GIT_STRATEGY: none
GIT_CHECKOUT: "false"
stage: deploy
script:
- cp project/target/jnlp/* html/jnlp/
tags:
- client:deploy-all