Cache dependencies on CI
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details

https://florian-latifi.at/2018/02/21/using-drone-to-build-and-deploy-a-jekyll-site/
https://git.florian-latifi.at/flortsch/jekyll-blog/src/branch/master/.drone.yml
This commit is contained in:
Basti 2020-11-21 22:45:50 +01:00
parent 5933c387b6
commit c86480e72b
Signed by untrusted user: basti
GPG Key ID: 9F88009D31D99C72
1 changed files with 24 additions and 1 deletions

View File

@ -3,12 +3,35 @@ type: docker
name: CI build
steps:
- name: restore-cache
image: drillster/drone-volume-cache
volumes:
- name: cache
path: /cache
settings:
restore: true
mount:
- vendor
- name: rspec
image: guildeducation/rails:2.7.1-12.19.0
commands:
- bundle install --jobs=3 --retry=3
- bundle install --jobs=3 --retry=3 --deployment
- yarn install
- bundle exec rspec
when:
branch:
- master
- name: rebuild-cache
image: drillster/drone-volume-cache
volumes:
- name: cache
path: /cache
settings:
rebuild: true
mount:
- vendor
volumes:
- name: cache
host:
path: /var/lib/drone/tmp