gpt4 book ai didi

windows - 使用 Windows Runner 上传工件

转载 作者:可可西里 更新时间:2023-11-01 13:33:53 26 4
gpt4 key购买 nike

我们使用官方Windows runner来自 Gitlab-ci。我们要上传工件。

我们在 yaml 文件中使用“artifact”关键字来定义需要上传的工件。当我们提交时,这是我们得到的消息:

gitlab-ci-multi-runner 0.7.2 (998cf5d)
WARNING: artifacts is not supported by selected executor and shell
Using Shell executor...

这是因为它使用了 Windows machine?这是怎么回事?

最佳答案

目前不支持从 Windows shell cmdpowershell 上传工件。在挖掘源代码一段时间后,我发现根据 gitlab-ci-multi-runner\shells\bash.go bash 确实支持它。

我的工作解决方案是:

  1. 安装 Bash(已包含在 Git-SCM 中)
  2. 将 bash 目录 (C:\Program Files (x86)\Git\bin) 添加到您的 PATH
  3. 如果您在 cmd 中键入 bash,请确保 bash 启动
  4. 找到您的 config.toml 并修改/添加:

    executor = "shell"  
    shell = "bash"
  5. 重启你的 git-runner 服务

  6. 确保您的构建脚本采用 bash 语法
    (例如使用 cmd.exe/c "dir" 从 bash 运行 windows 命令)

关于windows - 使用 Windows Runner 上传工件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34048031/

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