-
Notifications
You must be signed in to change notification settings - Fork 159
/
cumulusci.yml
616 lines (591 loc) · 18.3 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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
project:
name: CumulusCI-Test
package:
name: CumulusCI Test
namespace: ccitest
api_version: 48.0
git:
default_branch: main
repo_url: https://github.com/SalesforceFoundation/CumulusCI-Test
source_format: sfdx
dependencies:
- namespace: pub
version: 1.5
tasks:
github_automerge_feature:
options:
update_future_releases: false
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
account_record_types:
description: Dummy task for UX testing
class_path: cumulusci.tasks.util.Sleep
options:
seconds: 3
opportunity_record_types:
description: Dummy task for UX testing
class_path: cumulusci.tasks.util.Sleep
options:
seconds: 3
contacts_and_organizations:
description: Dummy task for UX testing
class_path: cumulusci.tasks.util.Sleep
options:
seconds: 7
households:
description: Dummy task for UX testing
class_path: cumulusci.tasks.util.Sleep
options:
seconds: 7
recurring_donations:
description: Dummy task for UX testing
class_path: cumulusci.tasks.util.Sleep
options:
seconds: 5
relationships:
description: Dummy task for UX testing
class_path: cumulusci.tasks.util.Sleep
options:
seconds: 4
affiliations:
description: Dummy task for UX testing
class_path: cumulusci.tasks.util.Sleep
options:
seconds: 3
npsp:
description: Dummy task for UX testing
class_path: cumulusci.tasks.util.Sleep
options:
seconds: 10
outbound_funds:
description: Dummy task for UX testing
class_path: cumulusci.tasks.util.Sleep
options:
seconds: 5
install_vbt:
description: Install VBT Package (for migrating OmniStudio components)
class_path: cumulusci.tasks.salesforce.InstallPackageVersion
group: OmniStudio
options:
namespace: vbtapp
version: "1.3"
name: VBT App
install_omnistudio:
description: Install OmniStudio
class_path: cumulusci.tasks.salesforce.InstallPackageVersion
group: OmniStudio
options:
namespace: omnistudio
version: "234.4"
name: OmniStudio
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
test_npsp_install:
description: A flow to simulate installing a production version of NPSP for UX testing
steps:
1:
task: account_record_types
2:
task: opportunity_record_types
3:
task: contacts_and_organizations
4:
task: households
5:
task: recurring_donations
6:
task: relationships
7:
task: affiliations
8:
task: npsp
test_npsp_install_error:
description: A flow to simulate installing a production version of NPSP for UX testing
steps:
1:
task: account_record_types
2:
task: deploy
options:
path: does_not_exist
3:
task: contacts_and_organizations
4:
task: households
5:
task: recurring_donations
6:
task: relationships
7:
task: affiliations
8:
task: npsp
test_npsp_preflight:
description: A preflight flow that passes.
steps:
1:
task: preflight
options:
task_name: account_record_types
2:
task: preflight
options:
task_name: opportunity_record_types
3:
task: preflight
options:
task_name: contacts_and_organizations
4:
task: preflight
options:
task_name: households
5:
task: preflight
options:
task_name: recurring_donations
6:
task: preflight
options:
task_name: relationships
7:
task: preflight
options:
task_name: affiliations
8:
task: preflight
options:
task_name: npsp
test_npsp_preflight_warn:
description: A preflight flow for test_npsp_install_error that creates a warning.
steps:
1:
task: preflight
options:
task_name: account_record_types
2:
task: preflight
options:
task_name: deploy
status_code: warn
msg: The Opportunity Record Type and Business Process already exist in your org. Are you sure you want to overwrite them?
3:
task: preflight
options:
task_name: contacts_and_organizations
4:
task: preflight
options:
task_name: households
5:
task: preflight
options:
task_name: recurring_donations
6:
task: preflight
options:
task_name: relationships
7:
task: preflight
options:
task_name: affiliations
8:
task: preflight
options:
task_name: npsp
test_outboundfunds_install:
description: A flow to simulate installing a production version of NPSP for UX testing
steps:
1:
task: outbound_funds
test_outboundfunds_preflight:
description: A passing preflight for test_outboundfunds_install
steps:
1:
task: preflight
options:
task_name: outbound_funds
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:
description: 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:
description: 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:
description: 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:
description: A preflight flow that has a top-level error.
steps:
1:
task: preflight_error
options:
task_name: not_implemented
test_metadeploy:
description: A flow that tests happy-path MetaDeploy capabilities
steps:
1:
task: install_omnistudio
2:
task: install_vbt
3:
task: deploy
options:
path: force-app
4:
# Validate we can shell to sfdx
task: dx_convert_from
5:
# Validate we can run a VBT task
task: vlocity_pack_export
options:
job_file: jobfile.yaml
# Wait steps so we can make this plan take time if we need to test concurrency or safe restarts.
6:
task: util_sleep
options:
seconds: 300
ui_options:
is_required: false
is_recommended: false
7:
task: util_sleep
options:
seconds: 300
ui_options:
is_required: false
is_recommended: false
8:
task: util_sleep
options:
seconds: 300
ui_options:
is_required: false
is_recommended: false
9:
task: util_sleep
options:
seconds: 300
ui_options:
is_required: false
is_recommended: false
10:
task: util_sleep
options:
seconds: 300
ui_options:
is_required: false
is_recommended: false
orgs:
scratch:
e2e:
config_file: orgs/e2e.json
plans:
install:
tier: primary
slug: install
title: Install
allowed_org_providers:
- devhub
- user
description: This is a test installation plan. Do not run this plan on a real Salesforce org.
steps:
1:
flow: test_metadeploy