WebPacker CI缓存所需的文件夹

时间:2018-06-15 22:59:37

标签: ruby-on-rails circleci webpacker

在使用WebPacker项目的Ruby on Rails项目中,哪些文件夹需要在CI服务上进行缓存以确保系统规格最佳运行?我的构建管道当前正在缓存public/packs-testtmp/cache/webpacker

在本地测试我看到了这种行为:

time rake assets:precompile RAILS_ENV=test # 2.0m
time rake assets:precompile RAILS_ENV=test # 5.0s
rm -rf ./public/packs-test ./tmp/cache/webpacker
time rake assets:precompile RAILS_ENV=test # 2.0m

这很有希望 - 编译时间最初为2分钟,然后是5秒。但是,在CI上,我一直看到资产编译的运行时间为2分钟。这是我在运行之间缓存/恢复的完整文件夹列表:

public/packs-test
tmp/cache/webpacker
tmp/yarn
node_modules

注意:将YARN_CACHE_FOLDER ENV变量设置为tmp/yarn并使用CircleCI。

修改

使用以下代码段缓存在CircleCI配置中使用。

type: cache-restore
keys:
  - assets-{{ .Branch }}-{{ .Revision }}
  - assets-{{ .Branch }}
  - assets

type: cache-save
key: assets-{{ .Branch }}-{{ .Revision }}
paths:
  - public/packs-test
  - tmp/cache/webpacker
  - tmp/yarn
  - node_modules

1 个答案:

答案 0 :(得分:1)

以下步骤对我来说效果很好:

  - restore_cache:
      name: Restore webpacker cache
      keys:
        - v1-webpacker-{{ .Branch }}-
        - v1-webpacker-

  - restore_cache:
      name: Restore compiled packs
      key: v1-packs-{{ checksum "tmp/cache/webpacker/last-compilation-digest-test" }}

  - save_cache:
      name: Store webpacker cache
      key: v1-webpacker-{{ .Branch }}-{{ epoch }}
      paths:
        - tmp/cache/webpacker

  - save_cache:
      name: Store compiled packs
      key: v1-packs-{{ checksum "tmp/cache/webpacker/last-compilation-digest-test" }}
      paths:
        - public/packs-test