AWS CodeBuild 错误:运行时“nodejs”不支持别名“14.x”的主要版本

Posted

技术标签:

【中文标题】AWS CodeBuild 错误:运行时“nodejs”不支持别名“14.x”的主要版本【英文标题】:AWS CodeBuild error: Major version of alias '14.x' is not supported in runtime 'nodejs' 【发布时间】:2022-01-09 07:35:12 【问题描述】:

我对 AWS CodeBuild 有一个令人困惑的问题。我收到以下错误:

Major version of alias '14.x' is not supported in runtime 'nodejs'

当我将 buildspec 更新为“14”时,我会获得更多关于错误的信息:

Message: Unknown runtime version named '14' of nodejs. This build image has the following versions: 10, 12

我们长期以来一直使用 12.x 使用此 CodeBuild 项目,现在需要更新到 14.x。我们更新了 buildspec 如下:

version: 0.2

phases:
  install:
    runtime-versions:
      nodejs: 14.x

  build:
    commands:
      - "npm i"
      - "npm run build"
      - "npm run db:migrate"

artifacts:
  files:
    - "all"
    - "of"
    - "our"
    - "files"

此外,我们的 CodeBuild 已经在最新版本的 CodeBuild 映像上。我什至重新构建了 CodeBuild 项目,以确保它是最新的并且仍然是相同的问题:

aws/codebuild/amazonlinux2-x86_64-standard:3.0

提前感谢您的任何建议。

【问题讨论】:

【参考方案1】:

谢天谢地,我们现在已经解决了这个问题!

问题在于 CodeBuild 映像:

aws/codebuild/amazonlinux2-x86_64-standard:3.0

根据the available runtimes documentation,事实证明我们根本无法使用 Amazon Linux 2,我们不得不更改为“Ubuntu Standard 5”。

我希望这对将来的人有所帮助。

【讨论】:

以上是关于AWS CodeBuild 错误:运行时“nodejs”不支持别名“14.x”的主要版本的主要内容,如果未能解决你的问题,请参考以下文章

AWS CodeBuild 中的 GetAuthorizationToken 权限错误

在 AWS CodeBuild 中运行容器的权限错误

AWS CodeBuild 不适用于 Yarn 工作区

Python cfn_tools 模块不会加载到在 AWS CodePipeline 中运行的 AWS CodeBuild 中

AWS codeBuild 不运行 .ebextension 配置

在 AWS CodeBuild 期间使用 npm install 时未创建 node_modules 目录