Open
Description
Describe the bug
I've tried 101 times, but all repeat build in rust.
To Reproduce
Steps to reproduce the behavior:
steps:
- name: restore-cache-with-filesystem
image: meltwater/drone-cache
pull: true
settings:
backend: "filesystem"
restore: true
cache_key: "volume"
mount:
- target
volumes:
- name: cache
path: /tmp/cache
- name: rust-build
image: rust:1.57.0
pull: true
commands:
- cargo build --release
when:
event: [push, pull_request]
branch: [development]
volumes:
- name: cache
path: /tmp/cache
- name: rebuild-cache-with-filesystem
image: meltwater/drone-cache
pull: true
settings:
backend: "filesystem"
rebuild: true
cache_key: "volume"
mount:
- target
volumes:
- name: cache
path: /tmp/cache
Expected behavior
Except for the first time, others should read the cache
Desktop (please complete the following information):
- OS: Ubuntu
- Version 18.0
Additional context
No more