Azure DevOps 构建管道“npm install”在 node-gyp 上失败

Azure DevOps Build pipeline `npm install` failing on node-gyp

我们有一个 CD/CI Azure Devops 构建管道已开始失败 nodejs/node-gyp

我们的构建管道没有任何变化,我们使用的池是:

pool:
  vmImage: 'windows-latest'

仍然映射到 windows-2019 https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops&tabs=yaml

当我们在 YAML 文件中执行以下任务时,管道失败:

- task: Npm@1
  displayName: 'npm install'
  inputs:
    command: 'install'
    workingDir: 'FrontEnd'
    verbose: true

日志文件:

error gyp ERR! UNCAUGHT EXCEPTION
error gyp ERR! stack Error: spawn C:\Program Files (x86)\Microsoft Visual Studio19\Enterprise\MSBuild.0\Bin\MSBuild.exe ENOENT
error gyp ERR! stack     at Process.ChildProcess._handle.onexit (node:internal/child_process:282:19)
error gyp ERR! stack     at onErrorNT (node:internal/child_process:477:16)
error gyp ERR! stack     at processTicksAndRejections (node:internal/process/task_queues:83:21)
error gyp ERR! System Windows_NT 10.0.17763
error gyp ERR! command "C:\Program Files\nodejs\node.exe" "D:\a\1\s\Presentation\node_modules\node-gyp\bin\node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="
error gyp ERR! cwd D:\a\s\FrontEnd\node_modules\node-sass
error gyp ERR! node -v v16.13.0
error gyp ERR! node-gyp -v v3.8.0
error gyp ERR! This is a bug in `node-gyp`.
error gyp ERR! Try to update node-gyp and file an Issue if it does not help:
error gyp ERR!     <https://github.com/nodejs/node-gyp/issues>
error Build failed with error code: 7
verbose exit 1

##[error]Error: Npm failed with return code: 1

A​​zure 自动更新了它正在使用的节点版本,也推动了所需的 node-gyp 版本,这导致我们所有的构建都失败了。它推送到的版本是:

  • npm@8.1.0
  • node@v16.13.0

添加 task: NodeTool@0 以将节点版本设置为最后通过的版本,对我们来说是:

  • npm@6.14.15
  • node@14.18.1

结束代码如下所示:

- task: NodeTool@0
  inputs:
    versionSpec: '14.x'
    
- task: Npm@1
  displayName: 'npm install'
  inputs:
    command: 'install'
    workingDir: 'FrontEnd'
    verbose: true

重新运行管道后它再次工作并产生人工制品。

我们在 npm/node 版本中遇到的问题指出 node-gyp 是罪魁祸首,如此处所示。如果在特定组件异常下未显示冲突版本,则当 npm install 为 运行

时,npm/node 版本会在用户代理下显示

在 npm 安装任务下,用户代理显示为:

user-agent = "npm/6.14.15 node/v16.13.0 win32 x64"

当 运行 'windows-latest' 图片时。

使用上一个答案中的节点工具,上面变成:

user-agent = "npm/6.14.15 node/v14.18.1 win32 x64"

这个问题类似于

对于那些不使用 yaml 和经典编辑器的人:

Node.js tool installer settings

经典编辑器用户:

  • 转到管道
  • 单击所需管道附近的“编辑”
  • 在 npm 安装任务之前添加 Node.js 工具安装程序任务
  • 版本规格:14.x
  • 保存管道