Files
akkounts/.drone.yml

44 lines
771 B
YAML
Raw Normal View History

2020-11-19 14:23:43 +01:00
kind: pipeline
type: docker
name: CI build
steps:
- name: restore-cache
image: drillster/drone-volume-cache
volumes:
- name: cache
path: /cache
settings:
restore: true
mount:
- vendor
when:
branch:
- master
2020-11-19 14:23:43 +01:00
- name: rspec
image: guildeducation/rails:2.7.1-12.19.0
commands:
- bundle install --jobs=3 --retry=3 --deployment
2020-11-19 14:23:43 +01:00
- 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
when:
branch:
- master
volumes:
- name: cache
host:
path: /var/lib/drone/tmp