gpt4 book ai didi

Azure管道: could not extract archive

转载 作者:行者123 更新时间:2023-12-03 03:47:22 26 4
gpt4 key购买 nike

我有一个 Azure 管道,应该构建一个项目并将 jar 复制到 Artifactory。这是应该安装节点的 yml:

- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'

我无法让它运行。它失败了

Could not extract archive:'/home/abc-vsts-user/.m2/repository/com/github/eirslett/node/10.14.2/node-10.14.2-linux-x64.tar.gz':Input is not in the .gz format

我不明白为什么它认为 .gz 格式的文件不是 .gz 格式!

在您教育我的同时,您能解释一下/home/abc-vsts-user 是什么吗?那是 Azure 虚拟机吗? Artifactory 虚拟机? (据我所知)该文件所在的唯一位置是 Artifactory。

有什么建议吗?

编辑这是代理:

pool:
name: jvdc-static-pool
demands:
- Agent.Name -equals jvdc-agent-2

最佳答案

事实证明,这是由于同一管道中也有一个 npm 安装脚本。

    - script: |
npm install
npm run build --if-present
npm run test --if-present
displayName: 'Npm install, build, and test'

当所有必要的事情都完成时,这导致第二次尝试安装节点

- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'

关于Azure管道: could not extract archive,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68569207/

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