Compare commits

...

1 commit

Author SHA1 Message Date
6ecbe1e0ae
Add CI cache
All checks were successful
continuous-integration/drone/push Build is passing
2025-06-12 14:22:27 +02:00

View file

@ -14,6 +14,15 @@ trigger:
- push - push
steps: steps:
- name: restore-cache
image: drillster/drone-volume-cache
restore: true
mount:
- ./deps
volumes:
- name: cache
path: /tmp/cache
- name: lint - name: lint
image: docker.io/library/elixir:1.18.3-otp-27 image: docker.io/library/elixir:1.18.3-otp-27
commands: commands:
@ -63,6 +72,21 @@ steps:
# Run tests # Run tests
- mix test - mix test
- name: rebuild-cache
image: drillster/drone-volume-cache
settings:
rebuild: true
mount:
- ./deps
volumes:
- name: cache
path: /tmp/cache
volumes:
- name: cache
host:
path: /tmp/drone_cache
--- ---
kind: pipeline kind: pipeline
type: docker type: docker