-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcodeship-steps.yml
52 lines (52 loc) · 1.49 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
- type: parallel
name: Build
steps:
- name: Build PostgreSQL
service: postgresApp
command: echo "Hello from PostgreSQL"
- name: Build MariaDB
service: mariadbApp
command: echo "Hello from MariaDB"
- type: serial
name: Deploy
tag: master
steps:
- type: serial
name: Deploy PostgreSQL
steps:
- &PUSH_STEP_DEFAULTS
type: push
name: Push PostgreSQL 9.3
service: postgres93
image_name: codeship/postgres
image_tag: "9.3"
registry: https://index.docker.io/v1/
encrypted_dockercfg_path: dockercfg.encrypted
- <<: *PUSH_STEP_DEFAULTS
name: Push PostgreSQL 9.4
service: postgres94
image_name: codeship/postgres
image_tag: "9.4"
- <<: *PUSH_STEP_DEFAULTS
name: Push PostgreSQL 9.5
service: postgres95
image_name: codeship/postgres
image_tag: "9.5"
- <<: *PUSH_STEP_DEFAULTS
name: Push PostreSQL 9.6
service: postgres96
image_name: codeship/postgres
image_tag: "9.6"
- <<: *PUSH_STEP_DEFAULTS
name: Push PostgreSQL 10.1
service: postgres101
image_name: codeship/postgres
image_tag: "10.1"
- type: serial
name: Deploy MariaDB
steps:
- <<: *PUSH_STEP_DEFAULTS
name: Push MariaDB 10.1
service: mariadb101
image_name: codeship/mariadb
image_tag: "10.1"