猿问

如何在 azure pipeline 中使用 Go Beta/RC 版本

我想在 Azure 管道中使用 Go 的测试版或发布版,但任务“Go 工具安装程序”不适用于“1.17rc1”等版本。


管道

$(go_version) = 1.17rc1


steps:

  - task: GoTool@0

    displayName: Install Go tools in version $(go_version)

    inputs:

      version: $(go_version)

输出

2021-07-15T08:01:13.5566938Z ##[section]Starting: Install Go tools in version 1.17rc1

2021-07-15T08:01:13.5573377Z ==============================================================================

2021-07-15T08:01:13.5573650Z Task         : Go tool installer

2021-07-15T08:01:13.5574064Z Description  : Find in cache or download a specific version of Go and add it to the PATH

2021-07-15T08:01:13.5574305Z Version      : 0.180.0

2021-07-15T08:01:13.5574495Z Author       : Microsoft Corporation

2021-07-15T08:01:13.5574776Z Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/tool/go-tool

2021-07-15T08:01:13.5575073Z ==============================================================================

2021-07-15T08:01:13.8414712Z Downloading: https://storage.googleapis.com/golang/go1.17rc1.linux-amd64.tar.gz

2021-07-15T08:01:16.3008064Z Extracting archive

2021-07-15T08:01:16.3027619Z [command]/usr/bin/tar xC /home/vsts/work/_temp/50a79994-bdb5-417d-8374-cd9746166c5f -f /home/vsts/work/_temp/d2be4a68-029c-4393-8492-5b804e41857e

2021-07-15T08:01:19.0933870Z Caching tool: go null x64

2021-07-15T08:01:19.1004014Z ##[error]TypeError: Cannot read property 'trim' of null

2021-07-15T08:01:19.1090132Z ##[section]Finishing: Install Go tools in version 1.17rc1

慕斯709654
浏览 135回答 1
1回答

慕慕森

这看起来像是任务本身的问题。它抛出这里:async function run() {    try {        let version = tl.getInput('version', true).trim();        await getGo(version);        telemetry.emitTelemetry('TaskHub', 'GoToolV0', { version });    }    catch (error) {        tl.setResult(tl.TaskResult.Failed, error);    }}这有点奇怪,因为我在这里没有看到任何逻辑阻止放在那里。我在 GitHub 上为此创建并发布1.17rc1
随时随地看视频慕课网APP

相关分类

Go
我要回答