Drone 插件市场 > Volume Cache
volume_cache.svg

Volume Cache

by drillster

MIT License

卷缓存插件可用于在两次构建之间保存文件和目录。

YAML 配置示例

kind: pipeline
name: default

steps:
- name: restore-cache
  image: drillster/drone-volume-cache
  volumes:
    - name: cache
      path: /cache
  settings:
    restore: true
    mount:
      - ./node_modules
- name: rebuild-cache
  image: drillster/drone-volume-cache
  volumes:
    - name: cache
      path: /cache
  settings:
    rebuild: true
    mount:
      - ./node_modules

volumes:
  - name: cache
    host:
      path: /tmp/cache

字段属性说明

  • restore

    boolean可选项

    从以前的版本中恢复缓存。

    默认值:false

  • rebuild

    boolean可选项

    重建缓存。

    默认值:false

  • mount

    array可选项

    要缓存的文件夹或文件列表

    默认值:none