This repository has been archived by the owner on Apr 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpipeline.yml
369 lines (333 loc) · 10.7 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
---
groups:
- name: dependencies
jobs:
- golang-toolchain
- plan-core
- name: applications
jobs:
- plan-pdi-local
- plan-client-phost
- plan-pnode
# TODO: we don't yet have a good workflow for these
# - name: unity-applications
# jobs:
# - plan-client-unity
# ----------------------------------------
# includes for tasks
includes:
go-check: &go-check
file: plan-ci-src/tasks/golang-check.yml
timeout: 10m
go-release: &go-release
file: plan-ci-src/tasks/golang-release.yml
timeout: 5m
# ----------------------------------------
jobs:
# builds the golang toolchain Docker image that will be
# used by all our other jobs
- name: golang-toolchain
public: true
max_in_flight: 1
build_log_retention:
days: 30
builds: 100
plan:
- in_parallel:
- get: plan-ci-src
- get: base-toolchain-go
trigger: true
- put: plan-toolchain-go
params:
build: plan-ci-src/images/plan-toolchain-go
get_params: {skip_download: true}
# runs tests on the core PLAN golang library
- name: plan-core
public: true
max_in_flight: 1
build_log_retention:
days: 30
builds: 100
plan:
- in_parallel:
- get: plan-toolchain-go
trigger: true
- get: plan-ci-src
trigger: true
- get: plan-core-src
trigger: true
- get: plan-protobufs-src
trigger: true
- in_parallel:
- task: build-protobufs
file: plan-ci-src/tasks/build-protobufs.yml
- task: check
<<: *go-check
vars: { repo: plan-core }
on_failure:
put: notify
params:
text: |
Checks for 'plan-core' failed! :crying_cat_face:
https://ci.machinistlabs.com/teams/plan/pipelines/plan/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME
- name: plan-pdi-local
public: true
max_in_flight: 1
build_log_retention:
days: 30
builds: 100
plan:
- in_parallel:
- get: plan-toolchain-go
trigger: true
- get: plan-ci-src
trigger: true
- get: plan-pdi-local-src
trigger: true
- task: check
<<: *go-check
vars: { repo: plan-pdi-local }
on_failure:
put: notify
params:
text: |
Checks for 'plan-pdi-local' failed! :crying_cat_face:
https://ci.machinistlabs.com/teams/plan/pipelines/plan/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME
- task: release
<<: *go-release
vars: { repo: plan-pdi-local }
on_failure:
put: notify
params:
text: |
Release for 'plan-pdi-local' failed! :crying_cat_face:
https://ci.machinistlabs.com/teams/plan/pipelines/plan/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME
on_success:
in_parallel:
- put: artifact-publish
inputs:
- plan-pdi-local-dist
params:
from: "/tmp/build/put/plan-pdi-local-dist/plan-pdi-local_linux_amd64.tar.gz"
to: "plan-pdi-local/${BUILD_DATETIME}/plan-pdi-local_linux_amd64.tar.gz"
datefmt: "+%Y%m%dT%H%MZ"
- put: artifact-publish
inputs:
- plan-pdi-local-dist
params:
from: "/tmp/build/put/plan-pdi-local-dist/plan-pdi-local_darwin_amd64.tar.gz"
to: "plan-pdi-local/${BUILD_DATETIME}/plan-pdi-local_darwin_amd64.tar.gz"
datefmt: "+%Y%m%dT%H%MZ"
- put: artifact-publish
inputs:
- plan-pdi-local-dist
params:
from: "/tmp/build/put/plan-pdi-local-dist/plan-pdi-local_windows_amd64.tar.gz"
to: "plan-pdi-local/${BUILD_DATETIME}/plan-pdi-local_windows_amd64.tar.gz"
datefmt: "+%Y%m%dT%H%MZ"
- name: plan-client-phost
public: true
max_in_flight: 1
build_log_retention:
days: 30
builds: 100
plan:
- in_parallel:
- get: plan-toolchain-go
trigger: true
- get: plan-ci-src
trigger: true
- get: plan-client-phost-src
trigger: true
- task: check
<<: *go-check
vars: { repo: plan-client-phost }
on_failure:
put: notify
params:
text: |
Checks for 'plan-client-phost' failed! :crying_cat_face:
https://ci.machinistlabs.com/teams/plan/pipelines/plan/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME
- task: release
<<: *go-release
vars: { repo: plan-client-phost }
on_failure:
put: notify
params:
text: |
Release for 'plan-client-phost' failed! :crying_cat_face:
https://ci.machinistlabs.com/teams/plan/pipelines/plan/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME
on_success:
in_parallel:
- put: artifact-publish
inputs:
- plan-client-phost-dist
params:
from: "/tmp/build/put/plan-client-phost-dist/plan-client-phost_linux_amd64.tar.gz"
to: "plan-client-phost/${BUILD_DATETIME}/plan-client-phost_linux_amd64.tar.gz"
datefmt: "+%Y%m%dT%H%MZ"
- put: artifact-publish
inputs:
- plan-client-phost-dist
params:
from: "/tmp/build/put/plan-client-phost-dist/plan-client-phost_darwin_amd64.tar.gz"
to: "plan-client-phost/${BUILD_DATETIME}/plan-client-phost_darwin_amd64.tar.gz"
datefmt: "+%Y%m%dT%H%MZ"
- put: artifact-publish
inputs:
- plan-client-phost-dist
params:
from: "/tmp/build/put/plan-client-phost-dist/plan-client-phost_windows_amd64.tar.gz"
to: "plan-client-phost/${BUILD_DATETIME}/plan-client-phost_windows_amd64.tar.gz"
datefmt: "+%Y%m%dT%H%MZ"
- name: plan-pnode
public: true
max_in_flight: 1
build_log_retention:
days: 30
builds: 100
plan:
- in_parallel:
- get: plan-toolchain-go
trigger: true
- get: plan-ci-src
trigger: true
- get: plan-pnode-src
trigger: true
- task: check
<<: *go-check
vars: { repo: plan-pnode }
on_failure:
put: notify
params:
text: |
Checks for 'plan-pnode' failed! :crying_cat_face:
https://ci.machinistlabs.com/teams/plan/pipelines/plan/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME
- task: release
<<: *go-release
vars: { repo: plan-pnode }
on_failure:
put: notify
params:
text: |
Release for 'plan-pnode' failed! :crying_cat_face:
https://ci.machinistlabs.com/teams/plan/pipelines/plan/jobs/$BUILD_JOB_NAME/builds/$BUILD_NAME
on_success:
in_parallel:
- put: artifact-publish
inputs:
- plan-pnode-dist
params:
from: "/tmp/build/put/plan-pnode-dist/plan-pnode_linux_amd64.tar.gz"
to: "plan-pnode/${BUILD_DATETIME}/plan-pnode_linux_amd64.tar.gz"
datefmt: "+%Y%m%dT%H%MZ"
- put: artifact-publish
inputs:
- plan-pnode-dist
params:
from: "/tmp/build/put/plan-pnode-dist/plan-pnode_darwin_amd64.tar.gz"
to: "plan-pnode/${BUILD_DATETIME}/plan-pnode_darwin_amd64.tar.gz"
datefmt: "+%Y%m%dT%H%MZ"
- put: artifact-publish
inputs:
- plan-pnode-dist
params:
from: "/tmp/build/put/plan-pnode-dist/plan-pnode_windows_amd64.tar.gz"
to: "plan-pnode/${BUILD_DATETIME}/plan-pnode_windows_amd64.tar.gz"
datefmt: "+%Y%m%dT%H%MZ"
resource_types:
- name: http-publish
type: docker-image
source:
repository: machinistlabs/concourse-http-publish
tag: latest
- name: slack-notification
type: docker-image
source:
repository: cfcommunity/slack-notification-resource
tag: latest
resources:
# --------------------------------------
# resources internal to CI
# defines the base Docker image we'll use for the golang toolchain.
# bump this whenever we switch to a new version of golang across the
# project. we check this once a week for updates.
- name: base-toolchain-go
type: docker-image
icon: docker
check_every: 168h
public: true
source:
email: ((docker-hub-email))
username: ((docker-hub-username))
password: ((docker-hub-password))
repository: golang
tag: 1.12-stretch
# defines the completed golang toolchain, including protobufs tooling
# and anything else we need to build the applications. we'll push this
# container image to the Docker Hub as part of our build process.
- name: plan-toolchain-go
type: docker-image
icon: docker
source:
email: ((docker-hub-email))
username: ((docker-hub-username))
password: ((docker-hub-password))
repository: machinistlabs/plan-toolchain-go
# uploads our build artifacts to a web server
- name: artifact-publish
type: http-publish
icon: file-upload
source:
url: ((http-publish-url))
username: ((http-publish-username))
password: ((http-publish-password))
# this repo!
- name: plan-ci-src
type: git
icon: github-circle
source:
uri: https://github.com/plan-systems/plan-ci
branch: master
# --------------------------------------
# our project repos
- name: plan-client-phost-src
type: git
icon: github-circle
source:
uri: https://github.com/plan-systems/plan-client-phost
branch: master
# - name: plan-client-unity-src
# type: git
# icon: github-circle
# source:
# uri: https://github.com/plan-systems/plan-client-unity
# branch: master
- name: plan-core-src
type: git
icon: github-circle
source:
uri: https://github.com/plan-systems/plan-core
branch: master
- name: plan-pdi-local-src
type: git
icon: github-circle
source:
uri: https://github.com/plan-systems/plan-pdi-local
branch: master
- name: plan-pnode-src
type: git
icon: github-circle
source:
uri: https://github.com/plan-systems/plan-pnode
branch: master
- name: plan-protobufs-src
type: git
icon: github-circle
source:
uri: https://github.com/plan-systems/plan-protobufs
branch: master
- name: notify
type: slack-notification
source:
url: ((slack-webhook))