gpt4 book ai didi

azure - 如何在Azure Pipelines中使用Bazel?

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

我尝试设置使用 Bazel 的 Azure 构建管道(0.26.0)

我的管道 YAML 定义文件如下所示:

trigger:
- master

pool:
vmImage: 'windows-2019'

steps:
- script: echo Hello, world!
displayName: 'Run a one-line script'

- script: |
bazel version
echo Add other tasks to build, test, and deploy your project.
echo See https://aka.ms/yaml
displayName: 'Run a multi-line script'

目前,我仅尝试通过调用 bazel version 来找出安装了哪个 Bazel 版本 - 但 Azure DevOps 报告:

'bazel' is not recognized as an internal or external command,
operable program or batch file.
Cmd.exe exited with code '9009'.

我想知道如何在 Azure 管道中安装和运行 Bazel - 有任何提示吗?

看来this project让它工作了。但我不明白怎么办。

最佳答案

更新以防 2022 年有人遇到此帖子:

Bazel 现已安装在 Microsoft 托管的 macOS-latest 代理上, ubuntu-latest ,和windows-latest .

尝试运行此管道;您将能够看到每个操作系统上安装了哪个版本的 Bazel。

strategy:
matrix:
linux:
imageName: ubuntu-latest
mac:
imageName: macOS-latest
windows:
imageName: windows-latest

pool:
vmImage: $(imageName)

steps:
- script: bazel version
displayName: Show bazel version

关于azure - 如何在Azure Pipelines中使用Bazel?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56374591/

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