forked from SFDO-Tooling/CumulusCI-Test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cumulusci.yml
349 lines (333 loc) · 10.4 KB
/
cumulusci.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
project:
name: CumulusCI Test
package:
name: CumulusCI Test
namespace: ccitest
api_version: 33.0
git:
repo_url: https://github.com/SalesforceFoundation/CumulusCI-Test
dependencies:
- namespace: pub
version: 1.5
apexdoc:
branch: gh-pages
repo_dir: ApexDocumentation
tasks:
named_sleep:
description: sleeps, and has a name
class_path: tasks.example.StaticSleep
preflight:
description: returns static preflight result
class_path: tasks.example.StaticPreflightTask
preflight_error:
description: blows up with a NotImplementedError
class_path: cumulusci.core.tasks.BaseTask
example_task:
description: An example project-level task that does nothing
class_path: tasks.example.ExampleTask
update_admin_profile:
options:
record_types:
- record_type: Account.HH_Account
- record_type: Account.Organization
default: true
person_account_default: true
- record_type: Opportunity.NPSP_Default
default: true
flows:
ci_test_concurrency:
description: A flow that does nothing but sleep for a minute. Used to test concurrency on CI systems
steps:
1:
task: util_sleep
options:
seconds: 60
slow_steps_flow:
description: A flow that slowly goes step by step.
steps:
1:
task: named_sleep
options:
seconds: 5
task_name: quick_task
2:
task: named_sleep
options:
seconds: 10
task_name: slow_task
3:
task: named_sleep
options:
seconds: 7
task_name: medium_task
4:
task: named_sleep
options:
seconds: 1
task_name: relationships
5:
task: named_sleep
options:
seconds: 1
task_name: affiliations
6:
task: named_sleep
options:
seconds: 1
task_name: update_admin_profile
7:
task: named_sleep
options:
seconds: 1
task_name: install_managed
8:
task: named_sleep
options:
seconds: 1
task_name: deploy_pre
9:
task: named_sleep
options:
seconds: 1
task_name: deploy_post
10:
task: named_sleep
options:
seconds: 1
task_name: ordered_step
slow_steps_preflight_good:
description: A passing preflight for the slow_steps_flow.
steps:
1:
task: preflight
options:
task_name: quick_task
2:
task: preflight
options:
task_name: slow_task
3:
task: preflight
options:
task_name: medium_task
4:
task: preflight
options:
task_name: relationships
5:
task: preflight
options:
task_name: affiliations
6:
task: preflight
options:
task_name: update_admin_profile
7:
task: preflight
options:
task_name: install_managed
8:
task: preflight
options:
task_name: deploy_pre
9:
task: preflight
options:
task_name: deploy_post
10:
task: preflight
options:
task_name: ordered_step
slow_steps_preflight_warn:
description: A warning preflight for the slow_steps_flow.
steps:
1:
task: preflight
options:
task_name: quick_task
2:
task: preflight
options:
task_name: slow_task
status_code: warn
msg: This might cause headache and eyestrain.
3:
task: preflight
options:
task_name: medium_task
4:
task: preflight
options:
task_name: relationships
5:
task: preflight
options:
task_name: affiliations
6:
task: preflight
options:
task_name: update_admin_profile
7:
task: preflight
options:
task_name: install_managed
8:
task: preflight
options:
task_name: deploy_pre
9:
task: preflight
options:
task_name: deploy_post
10:
task: preflight
options:
task_name: ordered_step
slow_steps_preflight_bad:
description: A failing preflight for the slow_steps_flow.
steps:
1:
task: preflight
options:
task_name: quick_task
2:
task: preflight
options:
task_name: slow_task
status_code: error
msg: You never expected this to work, did you?
3:
task: preflight
options:
task_name: medium_task
4:
task: preflight
options:
task_name: relationships
5:
task: preflight
options:
task_name: affiliations
6:
task: preflight
options:
task_name: update_admin_profile
7:
task: preflight
options:
task_name: install_managed
8:
task: preflight
options:
task_name: deploy_pre
9:
task: preflight
options:
task_name: deploy_post
10:
task: preflight
options:
task_name: ordered_step
static_preflight:
description: A preflight flow that returns a static value. for Install prod...
steps:
1:
task: preflight
options:
task_name: update_dependencies
2:
task: preflight
options:
task_name: deploy_pre
3:
task: preflight
options:
task_name: install_managed
4:
task: preflight
options:
task_name: deploy_post
5:
task: preflight
options:
task_name: update_admin_profile
failing_preflight:
descriptions: A preflight flow that fails.
steps:
1:
task: preflight
options:
task_name: update_dependencies
2:
task: preflight
options:
task_name: deploy_pre
3:
task: preflight
options:
task_name: install_managed
status_code: error
msg: You cannot install CumulusCI-Test into the CumulusCI-Test Packaging org, you goof!
4:
task: preflight
options:
task_name: deploy_post
5:
task: preflight
options:
task_name: update_admin_profile
messy_preflight:
descriptions: A preflight flow that has all kinds of issues.
steps:
1:
task: preflight
options:
task_name: update_dependencies
2:
task: preflight
options:
task_name: deploy_pre
status_code: warn
msg: You may see an error with the next task.
3:
task: preflight
options:
task_name: install_managed
status_code: error
msg: You cannot install CumulusCI-Test into the CumulusCI-Test Packaging org, you goof!
4:
task: preflight
options:
task_name: deploy_post
status_code: optional
5:
task: preflight
options:
task_name: update_admin_profile
status_code: skip
warn_preflight:
descriptions: A preflight flow that has warnings.
steps:
1:
task: preflight
options:
task_name: update_dependencies
2:
task: preflight
options:
task_name: deploy_pre
status_code: warn
msg: This warning is an <script>evil()</script> example.
3:
task: preflight
options:
task_name: install_managed
status_code: warn
msg: This warning is a <a href="https://www.salesforce.org/">good</a> example.
error_preflight:
descriptions: A preflight flow that has a top-level error.
steps:
1:
task: preflight_error
options:
task_name: not_implemented