-
Notifications
You must be signed in to change notification settings - Fork 0
/
codeship-steps.yml
72 lines (71 loc) · 2.25 KB
/
codeship-steps.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
- type: serial
steps:
- name: bootstrap-test
service: bootstrap
command: "/bootstrap-test.sh"
- type: parallel
encrypted_dockercfg_path: ci/encrypted/dockercfg
steps:
- type: parallel
service: sentinel
steps:
- name: push-sentinel
type: push
exclude: ^([0-9]+[.]*)+$
image_name: isim/stolon-sentinel
image_tag: "{{.Branch}}-{{.CommitDescription}}"
registry: https://index.docker.io/v1/
- name: push-sentinel-release
type: push
tag: ^([0-9]+[.]*)+$
image_name: isim/stolon-sentinel
image_tag: "{{.Branch}}"
registry: https://index.docker.io/v1/
- name: push-sentinel-latest
type: push
tag: master
image_name: isim/stolon-sentinel
image_tag: latest
registry: https://index.docker.io/v1/
- type: parallel
service: keeper
steps:
- name: push-keeper
type: push
exclude: ^([0-9]+[.]*)+$
image_name: isim/stolon-keeper
image_tag: "{{.Branch}}-{{.CommitDescription}}"
registry: https://index.docker.io/v1/
- name: push-keeper-release
type: push
tag: ^([0-9]+[.]*)+$
image_name: isim/stolon-keeper
image_tag: "{{.Branch}}"
registry: https://index.docker.io/v1/
- name: push-keeper-latest
type: push
tag: master
image_name: isim/stolon-keeper
image_tag: latest
registry: https://index.docker.io/v1/
- type: parallel
service: proxy
steps:
- name: push-proxy
type: push
exclude: ^([0-9]+[.]*)+$
image_name: isim/stolon-proxy
image_tag: "{{.Branch}}-{{.CommitDescription}}"
registry: https://index.docker.io/v1/
- name: push-proxy-release
type: push
tag: ^([0-9]+[.]*)+$
image_name: isim/stolon-proxy
image_tag: "{{.Branch}}-{{.CommitDescription}}"
registry: https://index.docker.io/v1/
- name: push-proxy-latest
type: push
tag: master
image_name: isim/stolon-proxy
image_tag: latest
registry: https://index.docker.io/v1/