我需要有关gitlab运行程序的帮助。我需要克隆另一个运行启动程序的gitlab存储库。
例如:CI运行程序 runner-repo-a 在 repo-a 中执行,而我需要在 repo-b 中克隆< strong> runner-repo-a 。
现在我有:
GO_CHEF: git.developers.mycompany.com/chef/myrepo-chef-repo.git
[...]
Update databags:
stage: update
script:
- git config --global url."https://gitlab-ci-token:${CI_JOB_TOKEN}@git.developers.mycompany.com:".insteadOf "https://git.developers.mycompany.com"
- go get -u ${GO_CHEF}
这是错误:
package git.developers.mycompany.com/chef/myrepo-chef-repo.git: cannot download,
git://git.developers.mycompany.com/chef/myrepo-chef-repo uses insecure protocol
此致