forked from cadence-workflow/cadence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipeline.yml
103 lines (95 loc) · 2.53 KB
/
pipeline.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
steps:
- label: ":golang: unit test"
agents:
queue: "workers"
docker: "*"
command: "make cover_ci"
plugins:
- docker-compose#v3.0.0:
run: unit-test
config: docker/buildkite/docker-compose.yml
- label: ":golang: integration test with cassandra"
agents:
queue: "workers"
docker: "*"
command: "make cover_integration_ci"
retry:
automatic:
limit: 1
plugins:
- docker-compose#v3.0.0:
run: integration-test-cassandra
config: docker/buildkite/docker-compose.yml
- label: ":golang: integration test events v2 with cassandra"
agents:
queue: "workers"
docker: "*"
command: "make cover_integration_ci EVENTSV2=true"
retry:
automatic:
limit: 1
plugins:
- docker-compose#v3.0.0:
run: integration-test-cassandra
config: docker/buildkite/docker-compose.yml
- label: ":golang: integration xdc test with cassandra"
agents:
queue: "workers"
docker: "*"
command: "make cover_xdc_ci"
retry:
automatic:
limit: 1
plugins:
- docker-compose#v3.0.0:
run: integration-test-xdc-cassandra
config: docker/buildkite/docker-compose.yml
- label: ":golang: integration test with mysql"
agents:
queue: "workers"
docker: "*"
command: "make cover_integration_ci"
retry:
automatic:
limit: 1
plugins:
- docker-compose#v3.0.0:
run: integration-test-mysql
config: docker/buildkite/docker-compose.yml
- label: ":golang: integration test events v2 with mysql"
agents:
queue: "workers"
docker: "*"
command: "make cover_integration_ci EVENTSV2=true"
retry:
automatic:
limit: 1
plugins:
- docker-compose#v3.0.0:
run: integration-test-mysql
config: docker/buildkite/docker-compose.yml
- label: ":golang: integration xdc test with mysql"
agents:
queue: "workers"
docker: "*"
command: "make cover_xdc_ci"
retry:
automatic:
limit: 1
plugins:
- docker-compose#v3.0.0:
run: integration-test-xdc-mysql
config: docker/buildkite/docker-compose.yml
- wait
- label: ":docker: build and push master"
agents:
queue: "workers"
docker: "*"
command: "scripts/buildkite/docker-push.sh"
retry:
automatic:
limit: 1
plugins:
- docker-login#v2.0.1:
username: ubercadence
password-env: DOCKER_LOGIN_PASSWORD