gpt4 book ai didi

windows - 尝试通过 GitLab Runner 脚本访问网络驱动器但出现错误

转载 作者:行者123 更新时间:2023-12-02 13:46:48 26 4
gpt4 key购买 nike

我正在使用 GitLab 的 CI 组件,但收到此错误:

The system cannot find the path specified.

当我尝试访问脚本中的映射网络驱动器时。当尝试从我的电脑(运行该服务的同一台电脑)正常访问驱动器时,我可以看到所有映射的驱动器。

这是 .gitlab-yml 中的脚本:

variables:
PROJECT_NAME: "TestApp"
STAGING_PATH: X:\some\network\location\%PROJECT_NAME%
stages:
- build
- deploy
build:
stage: build
script:
- echo "starting build for %PROJECT_NAME% at %TIME%"
...
artifacts:
name: "%PROJECT_NAME%"
paths:
- '%PROJECT_NAME%/bin/Release'
expire_in: 1 week
deploy:
stage: deploy
script:
- echo "Deploy to staging server"
- dir "X:" << ERROR HAPPENS HERE
- net use
dependencies:
- build
environment:
name: staging
only:
- master

我已使用 net use 命令列出它可以看到的网络位置,但该列表也是空的。有什么方法可以让 gitlab-runner 看到这些网络位置吗?

我使用的运行程序是一个 Windows 二进制文件 here 。配置toml文件是:

concurrent = 1
check_interval = 0

[[runners]]
name = "Haroon-PC"
url = "http://ae-ubuntu/"
token = "fd84211a6d37d88d4903317c85ce7a"
executor = "shell"
[runners.cache]

最佳答案

gitlab-runner 服务的内置系统帐户(默认)无权访问外部网络驱动器。

您必须使用有权访问网络驱动器的用户帐户运行 gitlab-runner 服务。启动服务时,请按照“使用用户帐户运行服务”下的说明进行操作。

https://docs.gitlab.com/runner/install/windows.html

关于windows - 尝试通过 GitLab Runner 脚本访问网络驱动器但出现错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51382301/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com