13

我在我的存储库中使用 Yarn Workspaces,并且还使用 AWS CodeBuild 来构建我的包。构建开始时,CodeBuild 需要 60 秒来安装所有包,我想避免这段时间缓存node_modules文件夹。

当我添加:

cache:
  paths:
    - 'node_modules/**/*'

到我的buildspec文件并启用LOCAL_CUSTOM_CACHE,我收到此错误:

错误发生意外错误:“EEXIST:文件已存在,mkdir'/codebuild/output/src637134264/src/git-codecommit.us-east-2.amazonaws.com/v1/repos/MY_REPOSITORY/node_modules/@packages/configs '”。

有没有办法消除配置 AWS CodeBuild 或 Yarn 的错误?

我的构建规范文件:

version: 0.2
phases:
  install:
    commands:
      - npm install -g yarn
      - git config --global credential.helper '!aws codecommit credential-helper $@'
      - git config --global credential.UseHttpPath true
      - yarn
  pre_build:
    commands:
      - git rev-parse HEAD
      - git pull origin master
  build:
    commands:
      - yarn run build
      - yarn run deploy
  post_build:
    commands:
      - echo 'Finished.'
cache:
  paths:
    - 'node_modules/**/*'

谢谢!

更新1:

/codebuild/output/src637134264/src/git-codecommit.us-east-2.amazonaws.com/v1/repos/MY_REPOSITORY/node_modules/@packages/configsYarn 正在尝试创建文件夹,命令- yarn处于install阶段。此文件夹是我的存储库包之一,名为@packages/config. 当我yarn在我的计算机上运行时,Yarn 会创建链接我的包的文件夹,如此所述。node_modules我的结构在我的计算机上的示例:

node_modules/
|-- ...
|-- @packages/
|   |-- configs/
|   |-- myPackageA/
|   |-- myPackageB/
|-- ...
4

1 回答 1

2

我遇到了完全相同的问题(“ EEXIST: file already exists, mkdir”),我最终使用了 S3 缓存并且效果很好。注意:由于某种原因,第一次上传到 S3 的时间(10 分钟)太长,其他的都很好。

前:

[5/5] Building fresh packages...
--
Done in 60.28s.

后:

[5/5] Building fresh packages...
--
Done in 6.64s.

如果您已经配置了项目,则可以通过访问 Project -> Edit -> Artifacts -> Additional configuration 来编辑缓存。

我的 buildspec.yml 如下:

version: 0.2

phases:
  install:
    runtime-versions:
       nodejs: 14
  build:
    commands:
      - yarn config set cache-folder /root/.yarn-cache
      - yarn install --frozen-lockfile
      - ...other build commands go here

cache:
  paths:
    - '/root/.yarn-cache/**/*'
    - 'node_modules/**/*'
    # This third entry is only if you're using monorepos (under the packages folder)
    # - 'packages/**/node_modules/**/*'

如果你使用 NPM,你会做类似的事情,但命令略有不同:

version: 0.2

phases:
  install:
    runtime-versions:
       nodejs: 14
  build:
    commands:
      - npm config -g set prefer-offline true
      - npm config -g set cache /root/.npm
      - npm ci
      - ...other build commands go here

cache:
  paths:
    - '/root/.npm-cache/**/*'
    - 'node_modules/**/*'
    # This third entry is only if you're using monorepos (under the packages folder)
    # - 'packages/**/node_modules/**/*'

感谢:https ://mechanicalrock.github.io/2019/02/03/monorepos-aws-codebuild.html

于 2021-03-18T08:05:30.240 回答