我有一个自托管的gitlab实例在docker窗口上运行,并设置了构建gitlab-ci的运行程序。在我的gitlab-ci.yml文件中,我提到过,每次对git存储库进行提交时,运行程序都应从存储库中提取最新的源文件。我的gitlab-ci文件包含以下几行:
git_pull:
stage: build
script:
- echo 'creating a pull request'
- cd "C:\Users\Haroon Gul\STM32CubeIDE\workspace_1.0.2\my-test-project"
- git pull "http://localhost:9090/root/my-test-project.git"
每次运行此步骤,我都会得到以下输出Logon failed, use ctrl+c to cancel basic credential prompt.
我在Windows上使用外壳运行器。