use drone cache
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Kovács Bence János 2020-05-08 23:21:57 +02:00
parent 0bea194f4a
commit f90bc35309

View File

@ -3,6 +3,20 @@ type: docker
name: default name: default
steps: steps:
- name: restore-cache-with-filesystem
image: meltwater/drone-cache
settings:
backend: "filesystem"
restore: true
cache_key: "{{ .Repo.Name }}"
archive_format: "gzip"
filesystem_cache_root: "/tmp/cache"
mount:
- '.pipcache'
volumes:
- name: cache
path: /tmp/cache
- name: static_analysis - name: static_analysis
image: python:3 image: python:3
commands: commands:
@ -34,6 +48,21 @@ steps:
- cd docs - cd docs
- make html - make html
- name: rebuild-cache-with-filesystem
image: meltwater/drone-cache
pull: true
settings:
backend: "filesystem"
rebuild: true
cache_key: "{{ .Repo.Name }}"
archive_format: "gzip"
filesystem_cache_root: "/tmp/cache"
mount:
- '.pipcache'
volumes:
- name: cache
path: /tmp/cache
- name: build_docs - name: build_docs
image: docker:stable-dind image: docker:stable-dind
volumes: volumes:
@ -73,3 +102,6 @@ services:
volumes: volumes:
- name: dockersock - name: dockersock
temp: {} temp: {}
- name: cache
host:
path: "/tmp/cache"