-
Notifications
You must be signed in to change notification settings - Fork 820
Expand file tree
/
Copy pathe2e_workflow_generated.yml
More file actions
2310 lines (2310 loc) · 85.5 KB
/
e2e_workflow_generated.yml
File metadata and controls
2310 lines (2310 loc) · 85.5 KB
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
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# auto generated file. DO NOT EDIT manually
version: 0.2
env:
shell: bash
compute-type: BUILD_GENERAL1_MEDIUM
variables:
AWS_DEFAULT_REGION: us-east-1
AWS_REGION: us-east-1
CDK_DEFAULT_REGION: us-east-1
AMPLIFY_DIR: $CODEBUILD_SRC_DIR/out
AMPLIFY_PATH: $CODEBUILD_SRC_DIR/out/amplify-pkg-linux-x64
batch:
fast-fail: false
build-graph:
- identifier: build_tests_standalone
buildspec: codebuild_specs/build_tests_standalone.yml
env:
compute-type: BUILD_GENERAL1_LARGE
- identifier: build_linux
buildspec: codebuild_specs/build_linux.yml
env:
compute-type: BUILD_GENERAL1_LARGE
- identifier: build_windows
buildspec: codebuild_specs/build_windows.yml
env:
type: WINDOWS_SERVER_2019_CONTAINER
compute-type: BUILD_GENERAL1_LARGE
image: $WINDOWS_IMAGE_2019
- identifier: test
buildspec: codebuild_specs/test.yml
depend-on:
- build_linux
env:
compute-type: BUILD_GENERAL1_LARGE
- identifier: lint
buildspec: codebuild_specs/lint.yml
depend-on:
- build_linux
env:
compute-type: BUILD_GENERAL1_LARGE
- identifier: mock_e2e_tests
buildspec: codebuild_specs/mock_e2e_tests.yml
depend-on:
- build_linux
env:
compute-type: BUILD_GENERAL1_LARGE
- identifier: validate_cdk_version
buildspec: codebuild_specs/validate_cdk_version.yml
depend-on:
- build_linux
- identifier: verify_api_extract
buildspec: codebuild_specs/verify_api_extract.yml
depend-on:
- build_linux
env:
compute-type: BUILD_GENERAL1_LARGE
- identifier: verify_yarn_lock
buildspec: codebuild_specs/verify_yarn_lock.yml
depend-on:
- build_linux
- identifier: publish_to_local_registry
buildspec: codebuild_specs/publish_to_local_registry.yml
depend-on:
- build_linux
env:
compute-type: BUILD_GENERAL1_LARGE
- identifier: build_pkg_binaries_arm
buildspec: codebuild_specs/build_pkg_binaries_arm.yml
depend-on:
- publish_to_local_registry
env:
compute-type: BUILD_GENERAL1_LARGE
- identifier: build_pkg_binaries_linux
buildspec: codebuild_specs/build_pkg_binaries_linux.yml
depend-on:
- publish_to_local_registry
env:
compute-type: BUILD_GENERAL1_LARGE
- identifier: build_pkg_binaries_macos
buildspec: codebuild_specs/build_pkg_binaries_macos.yml
depend-on:
- publish_to_local_registry
env:
compute-type: BUILD_GENERAL1_LARGE
- identifier: build_pkg_binaries_win
buildspec: codebuild_specs/build_pkg_binaries_win.yml
depend-on:
- publish_to_local_registry
env:
compute-type: BUILD_GENERAL1_LARGE
- identifier: upb
buildspec: codebuild_specs/upload_pkg_binaries.yml
depend-on:
- build_pkg_binaries_arm
- build_pkg_binaries_linux
- build_pkg_binaries_macos
- build_pkg_binaries_win
env:
compute-type: BUILD_GENERAL1_LARGE
- identifier: verify_versions_match
buildspec: codebuild_specs/verify_versions_match.yml
depend-on:
- publish_to_local_registry
- identifier: verify_pkg_cli
buildspec: codebuild_specs/verify_pkg_cli.yml
depend-on:
- build_pkg_binaries_arm
- build_pkg_binaries_linux
- build_pkg_binaries_macos
- build_pkg_binaries_win
env:
compute-type: BUILD_GENERAL1_LARGE
- identifier: integration_test
buildspec: codebuild_specs/integration_test.yml
depend-on:
- build_linux
env:
compute-type: BUILD_GENERAL1_LARGE
- identifier: amplify_sudo_install_test
buildspec: codebuild_specs/amplify_sudo_install_test.yml
depend-on:
- upb
- identifier: amplify_install_test
buildspec: codebuild_specs/amplify_install_test.yml
depend-on:
- upb
- identifier: amplify_console_integration_tests
buildspec: codebuild_specs/amplify_console_integration_tests.yml
env:
compute-type: BUILD_GENERAL1_LARGE
depend-on:
- upb
- identifier: amplify_general_config_tests
buildspec: codebuild_specs/amplify_general_config_tests.yml
env:
compute-type: BUILD_GENERAL1_LARGE
depend-on:
- upb
- identifier: cleanup_resources
buildspec: codebuild_specs/cleanup_resources.yml
depend-on:
- aggregate_e2e_reports
- identifier: l_diagnose_mock_api_hooks_a
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/diagnose.test.ts|src/__tests__/mock-api.test.ts|src/__tests__/hooks-a.test.ts
depend-on:
- upb
- identifier: l_notifications_lifecycle_auth_2f_auth_2d
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/notifications-lifecycle.test.ts|src/__tests__/auth_2f.test.ts|src/__tests__/auth_2d.test.ts
depend-on:
- upb
- identifier: l_auth_2b_auth_2a_analytics_pinpoint_js
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/auth_2b.test.ts|src/__tests__/auth_2a.test.ts|src/__tests__/analytics-pinpoint-js.test.ts
depend-on:
- upb
- identifier: l_analytics_pinpoint_flutter_analytics_kinesis_notifications_analytics_compatibility_sms_2
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/analytics-pinpoint-flutter.test.ts|src/__tests__/analytics-kinesis.test.ts|src/__tests__/notifications-analytics-compatibility-sms-2.test.ts
depend-on:
- upb
- identifier: l_notifications_analytics_compatibility_in_app_1_plugin_notifications_analytics_compatibility_sms_1
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/notifications-analytics-compatibility-in-app-1.test.ts|src/__tests__/plugin.test.ts|src/__tests__/notifications-analytics-compatibility-sms-1.test.ts
depend-on:
- upb
- identifier: l_hooks_b_global_sandbox_c_analytics_2
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/hooks-b.test.ts|src/__tests__/global_sandbox-c.test.ts|src/__tests__/analytics-2.test.ts
depend-on:
- upb
- identifier: l_pull_notifications_sms_pull_notifications_in_app_messaging_env_1
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/pull.test.ts|src/__tests__/notifications-sms-pull.test.ts|src/__tests__/notifications-in-app-messaging-env-1.test.ts
depend-on:
- upb
- identifier: l_custom_transformers_with_babel_config_notifications_in_app_messaging_env_2
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/graphql-v2/custom-transformers.test.ts|src/__tests__/with-babel-config.test.ts|src/__tests__/notifications-in-app-messaging-env-2.test.ts
depend-on:
- upb
- identifier: l_notifications_fcm_notifications_apns_init_b
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/notifications-fcm.test.ts|src/__tests__/notifications-apns.test.ts|src/__tests__/init_b.test.ts
depend-on:
- upb
- identifier: l_container_hosting_auth_10_init_f
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/container-hosting.test.ts|src/__tests__/auth_10.test.ts|src/__tests__/init_f.test.ts
depend-on:
- upb
- identifier: l_init_d_env_2_amplify_configure
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/init_d.test.ts|src/__tests__/env-2.test.ts|src/__tests__/amplify-configure.test.ts
depend-on:
- upb
- identifier: l_layer_4_init_c_git_clone_attach
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/layer-4.test.ts|src/__tests__/init_c.test.ts|src/__tests__/git-clone-attach.test.ts
depend-on:
- upb
- identifier: l_configure_project_auth_5d_tags
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/configure-project.test.ts|src/__tests__/auth_5d.test.ts|src/__tests__/tags.test.ts
depend-on:
- upb
- identifier: l_schema_model_a_function_4_function_3b
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-model-a.test.ts|src/__tests__/function_4.test.ts|src/__tests__/function_3b.test.ts
depend-on:
- upb
- identifier: l_function_2c_storage_2_function_6
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/function_2c.test.ts|src/__tests__/storage-2.test.ts|src/__tests__/function_6.test.ts
depend-on:
- upb
- identifier: l_custom_policies_function_auth_1a_auth_trigger
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/custom_policies_function.test.ts|src/__tests__/auth_1a.test.ts|src/__tests__/auth-trigger.test.ts
depend-on:
- upb
- identifier: l_schema_versioned_schema_model_e_schema_auth_4b
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-versioned.test.ts|src/__tests__/schema-model-e.test.ts|src/__tests__/schema-auth-4b.test.ts
depend-on:
- upb
- identifier: l_notifications_sms_iam_permissions_boundary_export
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/notifications-sms.test.ts|src/__tests__/iam-permissions-boundary.test.ts|src/__tests__/export.test.ts
depend-on:
- upb
- identifier: l_node_function_schema_model_d_schema_model_b
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/migration/node.function.test.ts|src/__tests__/schema-model-d.test.ts|src/__tests__/schema-model-b.test.ts
depend-on:
- upb
- identifier: l_schema_auth_4a_s3_sse_geo_add_b
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-auth-4a.test.ts|src/__tests__/s3-sse.test.ts|src/__tests__/geo-add-b.test.ts
depend-on:
- upb
- identifier: l_auth_8b_auth_5e_auth_1c
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/auth_8b.test.ts|src/__tests__/auth_5e.test.ts|src/__tests__/auth_1c.test.ts
depend-on:
- upb
- identifier: l_schema_predictions_schema_model_c_schema_data_access_patterns
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-predictions.test.ts|src/__tests__/schema-model-c.test.ts|src/__tests__/schema-data-access-patterns.test.ts
depend-on:
- upb
- identifier: l_schema_auth_6a_schema_auth_4d_frontend_config_drift
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-auth-6a.test.ts|src/__tests__/schema-auth-4d.test.ts|src/__tests__/frontend_config_drift.test.ts
depend-on:
- upb
- identifier: l_env_4_auth_5f_model_migration
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/env-4.test.ts|src/__tests__/auth_5f.test.ts|src/__tests__/transformer-migrations/model-migration.test.ts
depend-on:
- upb
- identifier: l_schema_auth_5c_schema_auth_4c_init_a
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-auth-5c.test.ts|src/__tests__/schema-auth-4c.test.ts|src/__tests__/init_a.test.ts
depend-on:
- upb
- identifier: l_geo_add_a_env_1_auth_5c
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/geo-add-a.test.ts|src/__tests__/env-1.test.ts|src/__tests__/auth_5c.test.ts
depend-on:
- upb
- identifier: l_auth_5a_auth_4c_auth_3c
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/auth_5a.test.ts|src/__tests__/auth_4c.test.ts|src/__tests__/auth_3c.test.ts
depend-on:
- upb
- identifier: l_schema_auth_8c_schema_auth_6b_schema_auth_5d
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-auth-8c.test.ts|src/__tests__/schema-auth-6b.test.ts|src/__tests__/schema-auth-5d.test.ts
depend-on:
- upb
- identifier: l_global_sandbox_b_geo_import_2_geo_import_1a
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/global_sandbox-b.test.ts|src/__tests__/geo-import-2.test.ts|src/__tests__/geo-import-1a.test.ts
depend-on:
- upb
- identifier: l_function_9c_function_10_function_permissions
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/function_9c.test.ts|src/__tests__/function_10.test.ts|src/__tests__/function-permissions.test.ts
depend-on:
- upb
- identifier: l_env_5_custom_resources_auth_9
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/env-5.test.ts|src/__tests__/custom_resources.test.ts|src/__tests__/auth_9.test.ts
depend-on:
- upb
- identifier: l_auth_5b_schema_auth_8a_schema_auth_7c
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/auth_5b.test.ts|src/__tests__/schema-auth-8a.test.ts|src/__tests__/schema-auth-7c.test.ts
depend-on:
- upb
- identifier: l_schema_auth_6d_schema_auth_6c_schema_auth_2b
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-auth-6d.test.ts|src/__tests__/schema-auth-6c.test.ts|src/__tests__/schema-auth-2b.test.ts
depend-on:
- upb
- identifier: l_schema_auth_11_c_notifications_analytics_compatibility_in_app_2_init_e
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-auth-11-c.test.ts|src/__tests__/notifications-analytics-compatibility-in-app-2.test.ts|src/__tests__/init_e.test.ts
depend-on:
- upb
- identifier: l_global_sandbox_a_geo_import_1b_feature_flags
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/global_sandbox-a.test.ts|src/__tests__/geo-import-1b.test.ts|src/__tests__/feature-flags.test.ts
depend-on:
- upb
- identifier: l_auth_8c_auth_7a_auth_4a
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/auth_8c.test.ts|src/__tests__/auth_7a.test.ts|src/__tests__/auth_4a.test.ts
depend-on:
- upb
- identifier: l_auth_3b_auth_3a_function_migration
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/auth_3b.test.ts|src/__tests__/auth_3a.test.ts|src/__tests__/transformer-migrations/function-migration.test.ts
depend-on:
- upb
- identifier: l_storage_3_schema_auth_9_c_schema_auth_9_a
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/storage-3.test.ts|src/__tests__/schema-auth-9-c.test.ts|src/__tests__/schema-auth-9-a.test.ts
depend-on:
- upb
- identifier: l_schema_auth_8b_schema_auth_5b_schema_auth_1a
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-auth-8b.test.ts|src/__tests__/schema-auth-5b.test.ts|src/__tests__/schema-auth-1a.test.ts
depend-on:
- upb
- identifier: l_geo_headless_function_9a_export_pull_a
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/geo-headless.test.ts|src/__tests__/function_9a.test.ts|src/__tests__/export-pull-a.test.ts
depend-on:
- upb
- identifier: l_api_7_api_10_api_key_migration5
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/api_7.test.ts|src/__tests__/api_10.test.ts|src/__tests__/migration/api.key.migration5.test.ts
depend-on:
- upb
- identifier: l_schema_iterative_rollback_1_schema_auth_9_b_schema_auth_7b
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-iterative-rollback-1.test.ts|src/__tests__/schema-auth-9-b.test.ts|src/__tests__/schema-auth-7b.test.ts
depend-on:
- upb
- identifier: l_schema_auth_7a_schema_auth_2a_schema_auth_1b
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-auth-7a.test.ts|src/__tests__/schema-auth-2a.test.ts|src/__tests__/schema-auth-1b.test.ts
depend-on:
- upb
- identifier: l_schema_auth_11_b_predictions_layer_3
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-auth-11-b.test.ts|src/__tests__/predictions.test.ts|src/__tests__/layer-3.test.ts
depend-on:
- upb
- identifier: l_hosting_geo_import_3_geo_add_d
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/hosting.test.ts|src/__tests__/geo-import-3.test.ts|src/__tests__/geo-add-d.test.ts
depend-on:
- upb
- identifier: l_geo_add_c_delete_auth_1b
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/geo-add-c.test.ts|src/__tests__/delete.test.ts|src/__tests__/auth_1b.test.ts
depend-on:
- upb
- identifier: l_auth_11_predictions_migration_api_key_migration3
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/auth_11.test.ts|src/__tests__/transformer-migrations/predictions-migration.test.ts|src/__tests__/migration/api.key.migration3.test.ts
depend-on:
- upb
- identifier: l_api_connection_migration_init_special_case_function_3a_python
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/migration/api.connection.migration.test.ts|src/__tests__/init-special-case.test.ts|src/__tests__/function_3a_python.test.ts
depend-on:
- upb
- identifier: l_function_3a_nodejs_function_3a_go_function_3a_dotnet
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/function_3a_nodejs.test.ts|src/__tests__/function_3a_go.test.ts|src/__tests__/function_3a_dotnet.test.ts
depend-on:
- upb
- identifier: l_export_pull_b_auth_7b_api_6a
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/export-pull-b.test.ts|src/__tests__/auth_7b.test.ts|src/__tests__/api_6a.test.ts
depend-on:
- upb
- identifier: l_http_migration_schema_function_2_schema_auth_3
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/transformer-migrations/http-migration.test.ts|src/__tests__/schema-function-2.test.ts|src/__tests__/schema-auth-3.test.ts
depend-on:
- upb
- identifier: l_schema_auth_12_schema_iterative_update_3_schema_iterative_rollback_2
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-auth-12.test.ts|src/__tests__/schema-iterative-update-3.test.ts|src/__tests__/schema-iterative-rollback-2.test.ts
depend-on:
- upb
- identifier: l_schema_auth_5a_export_pull_d_auth_8a
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-auth-5a.test.ts|src/__tests__/export-pull-d.test.ts|src/__tests__/auth_8a.test.ts
depend-on:
- upb
- identifier: l_auth_4b_auth_migration_push
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/auth_4b.test.ts|src/__tests__/transformer-migrations/auth-migration.test.ts|src/__tests__/push.test.ts
depend-on:
- upb
- identifier: l_pull_2_pr_previews_multi_env_1_parameter_store_2
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/pull-2.test.ts|src/__tests__/pr-previews-multi-env-1.test.ts|src/__tests__/parameter-store-2.test.ts
depend-on:
- upb
- identifier: l_parameter_store_1_notifications_sms_update_notifications_multi_env
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/parameter-store-1.test.ts|src/__tests__/notifications-sms-update.test.ts|src/__tests__/notifications-multi-env.test.ts
depend-on:
- upb
- identifier: l_minify_cloudformation_init_force_push_hooks_c
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/minify-cloudformation.test.ts|src/__tests__/init-force-push.test.ts|src/__tests__/hooks-c.test.ts
depend-on:
- upb
- identifier: l_help_function_2d_function_15
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/help.test.ts|src/__tests__/function_2d.test.ts|src/__tests__/function_15.test.ts
depend-on:
- upb
- identifier: l_function_14_function_13_function_12
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/function_14.test.ts|src/__tests__/function_13.test.ts|src/__tests__/function_12.test.ts
depend-on:
- upb
- identifier: l_export_pull_c_custom_resource_with_storage_build_function
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/export-pull-c.test.ts|src/__tests__/custom-resource-with-storage.test.ts|src/__tests__/build-function.test.ts
CLI_REGION: us-west-2
depend-on:
- upb
- identifier: l_build_function_yarn_modern_auth_5g_auth_2h
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/build-function-yarn-modern.test.ts|src/__tests__/auth_5g.test.ts|src/__tests__/auth_2h.test.ts
depend-on:
- upb
- identifier: l_auth_2g_auth_12_api_9a
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/auth_2g.test.ts|src/__tests__/auth_12.test.ts|src/__tests__/api_9a.test.ts
depend-on:
- upb
- identifier: l_api_2b_api_2a_amplify_remove
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/api_2b.test.ts|src/__tests__/api_2a.test.ts|src/__tests__/amplify-remove.test.ts
depend-on:
- upb
- identifier: l_S3server_smoketest_smoketest_ios
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/storage-simulator/S3server.test.ts|src/__tests__/smoke-tests/smoketest.test.ts|src/__tests__/smoke-tests/smoketest-ios.test.ts
depend-on:
- upb
- identifier: l_javascript_notifications_pinpoint_config_javascript_analytics_pinpoint_config_ios_notifications_pinpoint_config
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/pinpoint/javascript-notifications-pinpoint-config.test.ts|src/__tests__/pinpoint/javascript-analytics-pinpoint-config.test.ts|src/__tests__/pinpoint/ios-notifications-pinpoint-config.test.ts
depend-on:
- upb
- identifier: l_ios_analytics_pinpoint_config_flutter_notifications_pinpoint_config_flutter_analytics_pinpoint_config
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/pinpoint/ios-analytics-pinpoint-config.test.ts|src/__tests__/pinpoint/flutter-notifications-pinpoint-config.test.ts|src/__tests__/pinpoint/flutter-analytics-pinpoint-config.test.ts
depend-on:
- upb
- identifier: l_android_notifications_pinpoint_config_android_analytics_pinpoint_config_opensearch_simulator
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/pinpoint/android-notifications-pinpoint-config.test.ts|src/__tests__/pinpoint/android-analytics-pinpoint-config.test.ts|src/__tests__/opensearch-simulator/opensearch-simulator.test.ts
depend-on:
- upb
- identifier: l_general_config_headless_init_dynamodb_simulator_user_groups
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/general-config/general-config-headless-init.test.ts|src/__tests__/dynamodb-simulator/dynamodb-simulator.test.ts|src/__tests__/auth/user-groups.test.ts
depend-on:
- upb
- identifier: l_user_groups_s3_access_hosted_ui_admin_api
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/auth/user-groups-s3-access.test.ts|src/__tests__/auth/hosted-ui.test.ts|src/__tests__/auth/admin-api.test.ts
depend-on:
- upb
- identifier: l_schema_iterative_update_locking_function_8_api_8
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-iterative-update-locking.test.ts|src/__tests__/function_8.test.ts|src/__tests__/api_8.test.ts
depend-on:
- upb
- identifier: l_schema_auth_13_layer_2_api_lambda_auth_2
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-auth-13.test.ts|src/__tests__/layer-2.test.ts|src/__tests__/graphql-v2/api_lambda_auth_2.test.ts
depend-on:
- upb
- identifier: l_schema_iterative_update_1_function_5_schema_function_1
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-iterative-update-1.test.ts|src/__tests__/function_5.test.ts|src/__tests__/schema-function-1.test.ts
depend-on:
- upb
- identifier: l_schema_connection_2_function_2a_auth_6
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-connection-2.test.ts|src/__tests__/function_2a.test.ts|src/__tests__/auth_6.test.ts
depend-on:
- upb
- identifier: l_storage_1b_storage_1a_schema_iterative_update_2
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/storage-1b.test.ts|src/__tests__/storage-1a.test.ts|src/__tests__/schema-iterative-update-2.test.ts
depend-on:
- upb
- identifier: l_function_9b_custom_policies_container_api_9b
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/function_9b.test.ts|src/__tests__/custom_policies_container.test.ts|src/__tests__/api_9b.test.ts
depend-on:
- upb
- identifier: l_function_7_function_2b_function_11
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/function_7.test.ts|src/__tests__/function_2b.test.ts|src/__tests__/function_11.test.ts
depend-on:
- upb
- identifier: l_api_connection_migration2_storage_4_containers_api_secrets
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/migration/api.connection.migration2.test.ts|src/__tests__/storage-4.test.ts|src/__tests__/containers-api-secrets.test.ts
depend-on:
- upb
- identifier: l_api_4_schema_auth_10_schema_key
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/api_4.test.ts|src/__tests__/schema-auth-10.test.ts|src/__tests__/schema-key.test.ts
depend-on:
- upb
- identifier: l_resolvers_geo_multi_env_searchable_datastore
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/resolvers.test.ts|src/__tests__/geo-multi-env.test.ts|src/__tests__/graphql-v2/searchable-datastore.test.ts
depend-on:
- upb
- identifier: l_schema_searchable_apigw_api_5
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-searchable.test.ts|src/__tests__/apigw.test.ts|src/__tests__/api_5.test.ts
depend-on:
- upb
- identifier: l_api_key_migration2_api_lambda_auth_1_schema_auth_14
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/migration/api.key.migration2.test.ts|src/__tests__/graphql-v2/api_lambda_auth_1.test.ts|src/__tests__/schema-auth-14.test.ts
depend-on:
- upb
- identifier: l_api_key_migration1_api_6b_api_3
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/migration/api.key.migration1.test.ts|src/__tests__/api_6b.test.ts|src/__tests__/api_3.test.ts
depend-on:
- upb
- identifier: l_layer_1_api_1_api_key_migration4
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/layer-1.test.ts|src/__tests__/api_1.test.ts|src/__tests__/migration/api.key.migration4.test.ts
depend-on:
- upb
- identifier: l_schema_iterative_update_4_function_1_storage_5
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
TEST_SUITE: src/__tests__/schema-iterative-update-4.test.ts|src/__tests__/function_1.test.ts|src/__tests__/storage-5.test.ts
depend-on:
- upb
- identifier: l_datastore_modelgen
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/datastore-modelgen.test.ts
DISABLE_COVERAGE: 1
depend-on:
- upb
- identifier: l_amplify_app
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/amplify-app.test.ts
DISABLE_COVERAGE: 1
depend-on:
- upb
- identifier: l_uibuilder
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/uibuilder.test.ts
depend-on:
- upb
- identifier: l_auth_2e
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/auth_2e.test.ts
depend-on:
- upb
- identifier: l_auth_2c
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/auth_2c.test.ts
depend-on:
- upb
- identifier: l_studio_modelgen
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/studio-modelgen.test.ts
depend-on:
- upb
- identifier: l_geo_remove_3
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/geo-remove-3.test.ts
depend-on:
- upb
- identifier: l_geo_add_f
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/geo-add-f.test.ts
depend-on:
- upb
- identifier: l_geo_add_e
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/geo-add-e.test.ts
depend-on:
- upb
- identifier: l_import_dynamodb_2c
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/import_dynamodb_2c.test.ts
depend-on:
- upb
- identifier: l_env_3
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/env-3.test.ts
depend-on:
- upb
- identifier: l_notifications_in_app_messaging
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/notifications-in-app-messaging.test.ts
depend-on:
- upb
- identifier: l_geo_remove_2
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/geo-remove-2.test.ts
depend-on:
- upb
- identifier: l_import_auth_2a
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/import_auth_2a.test.ts
depend-on:
- upb
- identifier: l_import_auth_1a
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/import_auth_1a.test.ts
depend-on:
- upb
- identifier: l_import_s3_2c
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/import_s3_2c.test.ts
depend-on:
- upb
- identifier: l_import_s3_2a
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/import_s3_2a.test.ts
depend-on:
- upb
- identifier: l_import_auth_2b
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/import_auth_2b.test.ts
depend-on:
- upb
- identifier: l_schema_auth_11_a
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/schema-auth-11-a.test.ts
depend-on:
- upb
- identifier: l_import_auth_1b
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/import_auth_1b.test.ts
depend-on:
- upb
- identifier: l_import_s3_3
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/import_s3_3.test.ts
depend-on:
- upb
- identifier: l_geo_update_2
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/geo-update-2.test.ts
depend-on:
- upb
- identifier: l_geo_update_1
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/geo-update-1.test.ts
depend-on:
- upb
- identifier: l_import_dynamodb_2b
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/import_dynamodb_2b.test.ts
depend-on:
- upb
- identifier: l_api_6c
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/api_6c.test.ts
depend-on:
- upb
- identifier: l_smoketest_amplify_app
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/smoke-tests/smoketest-amplify-app.test.ts
DISABLE_COVERAGE: 1
depend-on:
- upb
- identifier: l_js_frontend_config
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/aws-exports/js-frontend-config.test.ts
depend-on:
- upb
- identifier: l_hostingPROD
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/hostingPROD.test.ts
depend-on:
- upb
- identifier: l_import_s3_2b
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/import_s3_2b.test.ts
depend-on:
- upb
- identifier: l_schema_connection_1
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/schema-connection-1.test.ts
depend-on:
- upb
- identifier: l_schema_auth_15
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/schema-auth-15.test.ts
depend-on:
- upb
- identifier: l_containers_api_1
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/containers-api-1.test.ts
depend-on:
- upb
- identifier: l_import_auth_3
buildspec: codebuild_specs/run_e2e_tests_linux.yml
env:
variables:
compute-type: BUILD_GENERAL1_SMALL
TEST_SUITE: src/__tests__/import_auth_3.test.ts
depend-on:
- upb
- identifier: l_import_dynamodb_2a
buildspec: codebuild_specs/run_e2e_tests_linux.yml