powershell Windows上的Gitlab runner配置

j1dl9f46  于 2023-03-30  发布在  Shell
关注(0)|答案(1)|浏览(215)

我正在尝试使用安装在我的windows机器上的gitlab runner。但管道执行失败,错误:错误:作业失败(系统故障):准备环境:无法启动进程:执行:“pwsh”:在%PATH%中找不到可执行文件。有关详细信息,请访问https://docs.gitlab.com/runner/shells/index.html#shell-profile-loading
我在注册runner时使用“shell”作为执行程序。我还正确设置了路径变量。
我在系统变量中正确设置了路径变量

wwtsj6pe

wwtsj6pe1#

在gitlab runner安装的根目录下,通常是c:\gitlab-runner,你会看到一个config.toml文件。你需要将pwsh(powershell核心)更改为powershell(powershell)。

[[runners]]
  executor = "shell"
  shell = "pwsh"

[[runners]]
  executor = "shell"
  shell = "powershell"

相关问题