【发布时间】:2021-05-14 06:57:07
【问题描述】:
我正在创建一个 Azure Devops 管道,这是我的管道 -
pool:
vmImage: ubuntu 16.04
steps:
- task: NodeTool@0
inputs:
versionSpec: ‘14.x’
displayName: ‘TASK | Install Node.js 14.x ’
但我收到以下错误 -
Starting: ‘TASK | Install Node.js 14.x ’
==============================================================================
Task : Node.js tool installer
Description : Finds or downloads and caches the specified version spec of Node.js and adds it to the PATH
Version : 0.186.0
Author : Microsoft Corporation
Help : https://docs.microsoft.com/azure/devops/pipelines/tasks/tool/node-js
==============================================================================
Downloading: https://nodejs.org/dist/v0.9.0/node-v0.9.0-linux-x64.tar.gz
Downloading: https://nodejs.org/dist/v0.9.0/win-x64/node.exe
Downloading: https://nodejs.org/dist/v0.9.0/node.exe
Downloading: https://nodejs.org/dist/v0.9.0/node.lib
Caching tool: node 0.9.0 x64
[error]Directory does not exist: /opt/hostedtoolcache/node/0.9.0/x64/bin
Finishing: ‘TASK | Install Node.js 14.x ’
不确定这里出了什么问题。我已经对 versionSpec 进行了相同的测试:12.x、10.x 等,但没有运气
【问题讨论】:
标签: node.js azure azure-devops yaml azure-pipelines