forked from sclinede/ruby-reports
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.drone.yml
58 lines (51 loc) · 1.17 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: build
kind: pipeline
type: docker
volumes:
- name: images
host:
path: /home/data/drone/images
- name: bundle
host:
path: /home/data/drone/gems
- name: keys
host:
path: /home/data/drone/key_cache
spec_step_common: &spec_step_common
image: abakpress/dind-testing
pull: if-not-exists
privileged: true
volumes:
- name: images
path: /images
- name: bundle
path: /bundle
- name: keys
path: /ssh_keys
commands:
- prepare-build
- fetch-images
--image whilp/ssh-agent
--image abakpress/ruby-app:$RUBY_IMAGE_TAG
- dip ssh add -T -v /ssh_keys -k /ssh_keys/id_rsa
- dip provision
- dip rspec
steps:
- name: Tests Ruby 2.4
environment:
COMPOSE_FILE_EXT: drone
DOCKER_RUBY_VERSION: 2.4
RUBY_IMAGE_TAG: 2.4-latest
RAILS_ENV: test
BUNDLER_OPTIONS: " --without 'development production profile console assets'"
BUNDLER_VERSION: 1.17.3
<<: *spec_step_common
- name: release
image: abakpress/gem-publication:latest
pull: if-not-exists
when:
event: push
branch: master
status: success
commands:
- release-gem