projen-pipelines 0.0.56 → 0.0.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +635 -82
- package/API.md +447 -0
- package/lib/awscdk/base.d.ts +6 -10
- package/lib/awscdk/base.js +3 -18
- package/lib/awscdk/bash.d.ts +2 -0
- package/lib/awscdk/bash.js +14 -2
- package/lib/awscdk/github.d.ts +3 -0
- package/lib/awscdk/github.js +28 -4
- package/lib/awscdk/gitlab.d.ts +2 -0
- package/lib/awscdk/gitlab.js +35 -10
- package/lib/engine.d.ts +12 -0
- package/lib/engine.js +19 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +3 -1
- package/lib/steps/index.d.ts +1 -0
- package/lib/steps/index.js +14 -0
- package/lib/steps/step.d.ts +77 -0
- package/lib/steps/step.js +66 -0
- package/package.json +4 -4
package/.jsii
CHANGED
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
},
|
|
131
131
|
"locationInModule": {
|
|
132
132
|
"filename": "src/awscdk/bash.ts",
|
|
133
|
-
"line":
|
|
133
|
+
"line": 11
|
|
134
134
|
},
|
|
135
135
|
"parameters": [
|
|
136
136
|
{
|
|
@@ -150,8 +150,26 @@
|
|
|
150
150
|
"kind": "class",
|
|
151
151
|
"locationInModule": {
|
|
152
152
|
"filename": "src/awscdk/bash.ts",
|
|
153
|
-
"line":
|
|
153
|
+
"line": 9
|
|
154
154
|
},
|
|
155
|
+
"methods": [
|
|
156
|
+
{
|
|
157
|
+
"docs": {
|
|
158
|
+
"stability": "stable"
|
|
159
|
+
},
|
|
160
|
+
"locationInModule": {
|
|
161
|
+
"filename": "src/awscdk/bash.ts",
|
|
162
|
+
"line": 78
|
|
163
|
+
},
|
|
164
|
+
"name": "engineType",
|
|
165
|
+
"overrides": "projen-pipelines.CDKPipeline",
|
|
166
|
+
"returns": {
|
|
167
|
+
"type": {
|
|
168
|
+
"fqn": "projen-pipelines.PipelineEngine"
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
],
|
|
155
173
|
"name": "BashCDKPipeline",
|
|
156
174
|
"symbolId": "src/awscdk/bash:BashCDKPipeline"
|
|
157
175
|
},
|
|
@@ -168,11 +186,50 @@
|
|
|
168
186
|
"kind": "interface",
|
|
169
187
|
"locationInModule": {
|
|
170
188
|
"filename": "src/awscdk/bash.ts",
|
|
171
|
-
"line":
|
|
189
|
+
"line": 5
|
|
172
190
|
},
|
|
173
191
|
"name": "BashCDKPipelineOptions",
|
|
174
192
|
"symbolId": "src/awscdk/bash:BashCDKPipelineOptions"
|
|
175
193
|
},
|
|
194
|
+
"projen-pipelines.BashStepConfig": {
|
|
195
|
+
"assembly": "projen-pipelines",
|
|
196
|
+
"datatype": true,
|
|
197
|
+
"docs": {
|
|
198
|
+
"stability": "stable",
|
|
199
|
+
"summary": "Configuration interface for a bash script step."
|
|
200
|
+
},
|
|
201
|
+
"fqn": "projen-pipelines.BashStepConfig",
|
|
202
|
+
"kind": "interface",
|
|
203
|
+
"locationInModule": {
|
|
204
|
+
"filename": "src/steps/step.ts",
|
|
205
|
+
"line": 35
|
|
206
|
+
},
|
|
207
|
+
"name": "BashStepConfig",
|
|
208
|
+
"properties": [
|
|
209
|
+
{
|
|
210
|
+
"abstract": true,
|
|
211
|
+
"docs": {
|
|
212
|
+
"stability": "stable",
|
|
213
|
+
"summary": "Shell commands to execute."
|
|
214
|
+
},
|
|
215
|
+
"immutable": true,
|
|
216
|
+
"locationInModule": {
|
|
217
|
+
"filename": "src/steps/step.ts",
|
|
218
|
+
"line": 38
|
|
219
|
+
},
|
|
220
|
+
"name": "commands",
|
|
221
|
+
"type": {
|
|
222
|
+
"collection": {
|
|
223
|
+
"elementtype": {
|
|
224
|
+
"primitive": "string"
|
|
225
|
+
},
|
|
226
|
+
"kind": "array"
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
],
|
|
231
|
+
"symbolId": "src/steps/step:BashStepConfig"
|
|
232
|
+
},
|
|
176
233
|
"projen-pipelines.CDKPipeline": {
|
|
177
234
|
"abstract": true,
|
|
178
235
|
"assembly": "projen-pipelines",
|
|
@@ -189,7 +246,7 @@
|
|
|
189
246
|
},
|
|
190
247
|
"locationInModule": {
|
|
191
248
|
"filename": "src/awscdk/base.ts",
|
|
192
|
-
"line":
|
|
249
|
+
"line": 118
|
|
193
250
|
},
|
|
194
251
|
"parameters": [
|
|
195
252
|
{
|
|
@@ -209,7 +266,7 @@
|
|
|
209
266
|
"kind": "class",
|
|
210
267
|
"locationInModule": {
|
|
211
268
|
"filename": "src/awscdk/base.ts",
|
|
212
|
-
"line":
|
|
269
|
+
"line": 113
|
|
213
270
|
},
|
|
214
271
|
"methods": [
|
|
215
272
|
{
|
|
@@ -219,7 +276,7 @@
|
|
|
219
276
|
},
|
|
220
277
|
"locationInModule": {
|
|
221
278
|
"filename": "src/awscdk/base.ts",
|
|
222
|
-
"line":
|
|
279
|
+
"line": 225
|
|
223
280
|
},
|
|
224
281
|
"name": "createApplicationEntrypoint",
|
|
225
282
|
"protected": true
|
|
@@ -231,7 +288,7 @@
|
|
|
231
288
|
},
|
|
232
289
|
"locationInModule": {
|
|
233
290
|
"filename": "src/awscdk/base.ts",
|
|
234
|
-
"line":
|
|
291
|
+
"line": 370
|
|
235
292
|
},
|
|
236
293
|
"name": "createFeatureStage",
|
|
237
294
|
"protected": true
|
|
@@ -243,7 +300,7 @@
|
|
|
243
300
|
},
|
|
244
301
|
"locationInModule": {
|
|
245
302
|
"filename": "src/awscdk/base.ts",
|
|
246
|
-
"line":
|
|
303
|
+
"line": 350
|
|
247
304
|
},
|
|
248
305
|
"name": "createPersonalStage",
|
|
249
306
|
"protected": true
|
|
@@ -255,7 +312,7 @@
|
|
|
255
312
|
},
|
|
256
313
|
"locationInModule": {
|
|
257
314
|
"filename": "src/awscdk/base.ts",
|
|
258
|
-
"line":
|
|
315
|
+
"line": 387
|
|
259
316
|
},
|
|
260
317
|
"name": "createPipelineStage",
|
|
261
318
|
"parameters": [
|
|
@@ -278,18 +335,34 @@
|
|
|
278
335
|
},
|
|
279
336
|
"locationInModule": {
|
|
280
337
|
"filename": "src/awscdk/base.ts",
|
|
281
|
-
"line":
|
|
338
|
+
"line": 310
|
|
282
339
|
},
|
|
283
340
|
"name": "createReleaseTasks",
|
|
284
341
|
"protected": true
|
|
285
342
|
},
|
|
343
|
+
{
|
|
344
|
+
"abstract": true,
|
|
345
|
+
"docs": {
|
|
346
|
+
"stability": "stable"
|
|
347
|
+
},
|
|
348
|
+
"locationInModule": {
|
|
349
|
+
"filename": "src/awscdk/base.ts",
|
|
350
|
+
"line": 163
|
|
351
|
+
},
|
|
352
|
+
"name": "engineType",
|
|
353
|
+
"returns": {
|
|
354
|
+
"type": {
|
|
355
|
+
"fqn": "projen-pipelines.PipelineEngine"
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
},
|
|
286
359
|
{
|
|
287
360
|
"docs": {
|
|
288
361
|
"stability": "stable"
|
|
289
362
|
},
|
|
290
363
|
"locationInModule": {
|
|
291
364
|
"filename": "src/awscdk/base.ts",
|
|
292
|
-
"line":
|
|
365
|
+
"line": 199
|
|
293
366
|
},
|
|
294
367
|
"name": "getAssetUploadCommands",
|
|
295
368
|
"parameters": [
|
|
@@ -318,7 +391,7 @@
|
|
|
318
391
|
},
|
|
319
392
|
"locationInModule": {
|
|
320
393
|
"filename": "src/awscdk/base.ts",
|
|
321
|
-
"line":
|
|
394
|
+
"line": 397
|
|
322
395
|
},
|
|
323
396
|
"name": "getCliStackPattern",
|
|
324
397
|
"parameters": [
|
|
@@ -342,7 +415,7 @@
|
|
|
342
415
|
},
|
|
343
416
|
"locationInModule": {
|
|
344
417
|
"filename": "src/awscdk/base.ts",
|
|
345
|
-
"line":
|
|
418
|
+
"line": 209
|
|
346
419
|
},
|
|
347
420
|
"name": "renderDeployCommands",
|
|
348
421
|
"parameters": [
|
|
@@ -371,7 +444,7 @@
|
|
|
371
444
|
},
|
|
372
445
|
"locationInModule": {
|
|
373
446
|
"filename": "src/awscdk/base.ts",
|
|
374
|
-
"line":
|
|
447
|
+
"line": 215
|
|
375
448
|
},
|
|
376
449
|
"name": "renderDiffCommands",
|
|
377
450
|
"parameters": [
|
|
@@ -400,7 +473,7 @@
|
|
|
400
473
|
},
|
|
401
474
|
"locationInModule": {
|
|
402
475
|
"filename": "src/awscdk/base.ts",
|
|
403
|
-
"line":
|
|
476
|
+
"line": 165
|
|
404
477
|
},
|
|
405
478
|
"name": "renderInstallCommands",
|
|
406
479
|
"protected": true,
|
|
@@ -421,7 +494,7 @@
|
|
|
421
494
|
},
|
|
422
495
|
"locationInModule": {
|
|
423
496
|
"filename": "src/awscdk/base.ts",
|
|
424
|
-
"line":
|
|
497
|
+
"line": 172
|
|
425
498
|
},
|
|
426
499
|
"name": "renderInstallPackageCommands",
|
|
427
500
|
"parameters": [
|
|
@@ -457,7 +530,7 @@
|
|
|
457
530
|
},
|
|
458
531
|
"locationInModule": {
|
|
459
532
|
"filename": "src/awscdk/base.ts",
|
|
460
|
-
"line":
|
|
533
|
+
"line": 191
|
|
461
534
|
},
|
|
462
535
|
"name": "renderSynthCommands",
|
|
463
536
|
"protected": true,
|
|
@@ -482,7 +555,7 @@
|
|
|
482
555
|
"immutable": true,
|
|
483
556
|
"locationInModule": {
|
|
484
557
|
"filename": "src/awscdk/base.ts",
|
|
485
|
-
"line":
|
|
558
|
+
"line": 116
|
|
486
559
|
},
|
|
487
560
|
"name": "branchName",
|
|
488
561
|
"type": {
|
|
@@ -496,7 +569,7 @@
|
|
|
496
569
|
"immutable": true,
|
|
497
570
|
"locationInModule": {
|
|
498
571
|
"filename": "src/awscdk/base.ts",
|
|
499
|
-
"line":
|
|
572
|
+
"line": 115
|
|
500
573
|
},
|
|
501
574
|
"name": "stackPrefix",
|
|
502
575
|
"type": {
|
|
@@ -509,7 +582,7 @@
|
|
|
509
582
|
},
|
|
510
583
|
"locationInModule": {
|
|
511
584
|
"filename": "src/awscdk/base.ts",
|
|
512
|
-
"line":
|
|
585
|
+
"line": 118
|
|
513
586
|
},
|
|
514
587
|
"name": "app",
|
|
515
588
|
"protected": true,
|
|
@@ -532,7 +605,7 @@
|
|
|
532
605
|
"kind": "interface",
|
|
533
606
|
"locationInModule": {
|
|
534
607
|
"filename": "src/awscdk/base.ts",
|
|
535
|
-
"line":
|
|
608
|
+
"line": 54
|
|
536
609
|
},
|
|
537
610
|
"name": "CDKPipelineOptions",
|
|
538
611
|
"properties": [
|
|
@@ -546,7 +619,7 @@
|
|
|
546
619
|
"immutable": true,
|
|
547
620
|
"locationInModule": {
|
|
548
621
|
"filename": "src/awscdk/base.ts",
|
|
549
|
-
"line":
|
|
622
|
+
"line": 83
|
|
550
623
|
},
|
|
551
624
|
"name": "pkgNamespace",
|
|
552
625
|
"type": {
|
|
@@ -561,7 +634,7 @@
|
|
|
561
634
|
"immutable": true,
|
|
562
635
|
"locationInModule": {
|
|
563
636
|
"filename": "src/awscdk/base.ts",
|
|
564
|
-
"line":
|
|
637
|
+
"line": 85
|
|
565
638
|
},
|
|
566
639
|
"name": "stages",
|
|
567
640
|
"type": {
|
|
@@ -583,7 +656,7 @@
|
|
|
583
656
|
"immutable": true,
|
|
584
657
|
"locationInModule": {
|
|
585
658
|
"filename": "src/awscdk/base.ts",
|
|
586
|
-
"line":
|
|
659
|
+
"line": 60
|
|
587
660
|
},
|
|
588
661
|
"name": "branchName",
|
|
589
662
|
"optional": true,
|
|
@@ -602,7 +675,7 @@
|
|
|
602
675
|
"immutable": true,
|
|
603
676
|
"locationInModule": {
|
|
604
677
|
"filename": "src/awscdk/base.ts",
|
|
605
|
-
"line":
|
|
678
|
+
"line": 76
|
|
606
679
|
},
|
|
607
680
|
"name": "deploySubStacks",
|
|
608
681
|
"optional": true,
|
|
@@ -618,7 +691,7 @@
|
|
|
618
691
|
"immutable": true,
|
|
619
692
|
"locationInModule": {
|
|
620
693
|
"filename": "src/awscdk/base.ts",
|
|
621
|
-
"line":
|
|
694
|
+
"line": 89
|
|
622
695
|
},
|
|
623
696
|
"name": "featureStages",
|
|
624
697
|
"optional": true,
|
|
@@ -634,7 +707,7 @@
|
|
|
634
707
|
"immutable": true,
|
|
635
708
|
"locationInModule": {
|
|
636
709
|
"filename": "src/awscdk/base.ts",
|
|
637
|
-
"line":
|
|
710
|
+
"line": 87
|
|
638
711
|
},
|
|
639
712
|
"name": "personalStage",
|
|
640
713
|
"optional": true,
|
|
@@ -650,7 +723,7 @@
|
|
|
650
723
|
"immutable": true,
|
|
651
724
|
"locationInModule": {
|
|
652
725
|
"filename": "src/awscdk/base.ts",
|
|
653
|
-
"line":
|
|
726
|
+
"line": 102
|
|
654
727
|
},
|
|
655
728
|
"name": "postSynthCommands",
|
|
656
729
|
"optional": true,
|
|
@@ -671,7 +744,28 @@
|
|
|
671
744
|
"immutable": true,
|
|
672
745
|
"locationInModule": {
|
|
673
746
|
"filename": "src/awscdk/base.ts",
|
|
674
|
-
"line":
|
|
747
|
+
"line": 106
|
|
748
|
+
},
|
|
749
|
+
"name": "postSynthSteps",
|
|
750
|
+
"optional": true,
|
|
751
|
+
"type": {
|
|
752
|
+
"collection": {
|
|
753
|
+
"elementtype": {
|
|
754
|
+
"fqn": "projen-pipelines.PipelineStep"
|
|
755
|
+
},
|
|
756
|
+
"kind": "array"
|
|
757
|
+
}
|
|
758
|
+
}
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
"abstract": true,
|
|
762
|
+
"docs": {
|
|
763
|
+
"stability": "stable"
|
|
764
|
+
},
|
|
765
|
+
"immutable": true,
|
|
766
|
+
"locationInModule": {
|
|
767
|
+
"filename": "src/awscdk/base.ts",
|
|
768
|
+
"line": 100
|
|
675
769
|
},
|
|
676
770
|
"name": "preInstallCommands",
|
|
677
771
|
"optional": true,
|
|
@@ -692,7 +786,28 @@
|
|
|
692
786
|
"immutable": true,
|
|
693
787
|
"locationInModule": {
|
|
694
788
|
"filename": "src/awscdk/base.ts",
|
|
695
|
-
"line":
|
|
789
|
+
"line": 104
|
|
790
|
+
},
|
|
791
|
+
"name": "preInstallSteps",
|
|
792
|
+
"optional": true,
|
|
793
|
+
"type": {
|
|
794
|
+
"collection": {
|
|
795
|
+
"elementtype": {
|
|
796
|
+
"fqn": "projen-pipelines.PipelineStep"
|
|
797
|
+
},
|
|
798
|
+
"kind": "array"
|
|
799
|
+
}
|
|
800
|
+
}
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"abstract": true,
|
|
804
|
+
"docs": {
|
|
805
|
+
"stability": "stable"
|
|
806
|
+
},
|
|
807
|
+
"immutable": true,
|
|
808
|
+
"locationInModule": {
|
|
809
|
+
"filename": "src/awscdk/base.ts",
|
|
810
|
+
"line": 101
|
|
696
811
|
},
|
|
697
812
|
"name": "preSynthCommands",
|
|
698
813
|
"optional": true,
|
|
@@ -705,6 +820,27 @@
|
|
|
705
820
|
}
|
|
706
821
|
}
|
|
707
822
|
},
|
|
823
|
+
{
|
|
824
|
+
"abstract": true,
|
|
825
|
+
"docs": {
|
|
826
|
+
"stability": "stable"
|
|
827
|
+
},
|
|
828
|
+
"immutable": true,
|
|
829
|
+
"locationInModule": {
|
|
830
|
+
"filename": "src/awscdk/base.ts",
|
|
831
|
+
"line": 105
|
|
832
|
+
},
|
|
833
|
+
"name": "preSynthSteps",
|
|
834
|
+
"optional": true,
|
|
835
|
+
"type": {
|
|
836
|
+
"collection": {
|
|
837
|
+
"elementtype": {
|
|
838
|
+
"fqn": "projen-pipelines.PipelineStep"
|
|
839
|
+
},
|
|
840
|
+
"kind": "array"
|
|
841
|
+
}
|
|
842
|
+
}
|
|
843
|
+
},
|
|
708
844
|
{
|
|
709
845
|
"abstract": true,
|
|
710
846
|
"docs": {
|
|
@@ -715,7 +851,7 @@
|
|
|
715
851
|
"immutable": true,
|
|
716
852
|
"locationInModule": {
|
|
717
853
|
"filename": "src/awscdk/base.ts",
|
|
718
|
-
"line":
|
|
854
|
+
"line": 68
|
|
719
855
|
},
|
|
720
856
|
"name": "stackPrefix",
|
|
721
857
|
"optional": true,
|
|
@@ -736,7 +872,7 @@
|
|
|
736
872
|
"kind": "interface",
|
|
737
873
|
"locationInModule": {
|
|
738
874
|
"filename": "src/awscdk/base.ts",
|
|
739
|
-
"line":
|
|
875
|
+
"line": 38
|
|
740
876
|
},
|
|
741
877
|
"name": "DeploymentStage",
|
|
742
878
|
"properties": [
|
|
@@ -748,7 +884,7 @@
|
|
|
748
884
|
"immutable": true,
|
|
749
885
|
"locationInModule": {
|
|
750
886
|
"filename": "src/awscdk/base.ts",
|
|
751
|
-
"line":
|
|
887
|
+
"line": 40
|
|
752
888
|
},
|
|
753
889
|
"name": "env",
|
|
754
890
|
"type": {
|
|
@@ -763,7 +899,7 @@
|
|
|
763
899
|
"immutable": true,
|
|
764
900
|
"locationInModule": {
|
|
765
901
|
"filename": "src/awscdk/base.ts",
|
|
766
|
-
"line":
|
|
902
|
+
"line": 39
|
|
767
903
|
},
|
|
768
904
|
"name": "name",
|
|
769
905
|
"type": {
|
|
@@ -778,7 +914,7 @@
|
|
|
778
914
|
"immutable": true,
|
|
779
915
|
"locationInModule": {
|
|
780
916
|
"filename": "src/awscdk/base.ts",
|
|
781
|
-
"line":
|
|
917
|
+
"line": 41
|
|
782
918
|
},
|
|
783
919
|
"name": "manualApproval",
|
|
784
920
|
"optional": true,
|
|
@@ -801,7 +937,7 @@
|
|
|
801
937
|
"kind": "interface",
|
|
802
938
|
"locationInModule": {
|
|
803
939
|
"filename": "src/awscdk/base.ts",
|
|
804
|
-
"line":
|
|
940
|
+
"line": 12
|
|
805
941
|
},
|
|
806
942
|
"name": "Environment",
|
|
807
943
|
"properties": [
|
|
@@ -815,7 +951,7 @@
|
|
|
815
951
|
"immutable": true,
|
|
816
952
|
"locationInModule": {
|
|
817
953
|
"filename": "src/awscdk/base.ts",
|
|
818
|
-
"line":
|
|
954
|
+
"line": 18
|
|
819
955
|
},
|
|
820
956
|
"name": "account",
|
|
821
957
|
"type": {
|
|
@@ -832,7 +968,7 @@
|
|
|
832
968
|
"immutable": true,
|
|
833
969
|
"locationInModule": {
|
|
834
970
|
"filename": "src/awscdk/base.ts",
|
|
835
|
-
"line":
|
|
971
|
+
"line": 25
|
|
836
972
|
},
|
|
837
973
|
"name": "region",
|
|
838
974
|
"type": {
|
|
@@ -857,7 +993,7 @@
|
|
|
857
993
|
},
|
|
858
994
|
"locationInModule": {
|
|
859
995
|
"filename": "src/awscdk/github.ts",
|
|
860
|
-
"line":
|
|
996
|
+
"line": 48
|
|
861
997
|
},
|
|
862
998
|
"parameters": [
|
|
863
999
|
{
|
|
@@ -883,7 +1019,7 @@
|
|
|
883
1019
|
"kind": "class",
|
|
884
1020
|
"locationInModule": {
|
|
885
1021
|
"filename": "src/awscdk/github.ts",
|
|
886
|
-
"line":
|
|
1022
|
+
"line": 33
|
|
887
1023
|
},
|
|
888
1024
|
"methods": [
|
|
889
1025
|
{
|
|
@@ -893,7 +1029,7 @@
|
|
|
893
1029
|
},
|
|
894
1030
|
"locationInModule": {
|
|
895
1031
|
"filename": "src/awscdk/github.ts",
|
|
896
|
-
"line":
|
|
1032
|
+
"line": 136
|
|
897
1033
|
},
|
|
898
1034
|
"name": "createAssetUpload"
|
|
899
1035
|
},
|
|
@@ -904,7 +1040,7 @@
|
|
|
904
1040
|
},
|
|
905
1041
|
"locationInModule": {
|
|
906
1042
|
"filename": "src/awscdk/github.ts",
|
|
907
|
-
"line":
|
|
1043
|
+
"line": 185
|
|
908
1044
|
},
|
|
909
1045
|
"name": "createDeployment",
|
|
910
1046
|
"parameters": [
|
|
@@ -918,6 +1054,23 @@
|
|
|
918
1054
|
}
|
|
919
1055
|
}
|
|
920
1056
|
]
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
"docs": {
|
|
1060
|
+
"stability": "stable",
|
|
1061
|
+
"summary": "the type of engine this implementation of CDKPipeline is for."
|
|
1062
|
+
},
|
|
1063
|
+
"locationInModule": {
|
|
1064
|
+
"filename": "src/awscdk/github.ts",
|
|
1065
|
+
"line": 74
|
|
1066
|
+
},
|
|
1067
|
+
"name": "engineType",
|
|
1068
|
+
"overrides": "projen-pipelines.CDKPipeline",
|
|
1069
|
+
"returns": {
|
|
1070
|
+
"type": {
|
|
1071
|
+
"fqn": "projen-pipelines.PipelineEngine"
|
|
1072
|
+
}
|
|
1073
|
+
}
|
|
921
1074
|
}
|
|
922
1075
|
],
|
|
923
1076
|
"name": "GithubCDKPipeline",
|
|
@@ -930,7 +1083,7 @@
|
|
|
930
1083
|
"immutable": true,
|
|
931
1084
|
"locationInModule": {
|
|
932
1085
|
"filename": "src/awscdk/github.ts",
|
|
933
|
-
"line":
|
|
1086
|
+
"line": 36
|
|
934
1087
|
},
|
|
935
1088
|
"name": "needsVersionedArtifacts",
|
|
936
1089
|
"type": {
|
|
@@ -954,7 +1107,7 @@
|
|
|
954
1107
|
"kind": "interface",
|
|
955
1108
|
"locationInModule": {
|
|
956
1109
|
"filename": "src/awscdk/github.ts",
|
|
957
|
-
"line":
|
|
1110
|
+
"line": 25
|
|
958
1111
|
},
|
|
959
1112
|
"name": "GithubCDKPipelineOptions",
|
|
960
1113
|
"properties": [
|
|
@@ -966,7 +1119,7 @@
|
|
|
966
1119
|
"immutable": true,
|
|
967
1120
|
"locationInModule": {
|
|
968
1121
|
"filename": "src/awscdk/github.ts",
|
|
969
|
-
"line":
|
|
1122
|
+
"line": 26
|
|
970
1123
|
},
|
|
971
1124
|
"name": "iamRoleArns",
|
|
972
1125
|
"type": {
|
|
@@ -987,7 +1140,7 @@
|
|
|
987
1140
|
"kind": "interface",
|
|
988
1141
|
"locationInModule": {
|
|
989
1142
|
"filename": "src/awscdk/github.ts",
|
|
990
|
-
"line":
|
|
1143
|
+
"line": 10
|
|
991
1144
|
},
|
|
992
1145
|
"name": "GithubIamRoleConfig",
|
|
993
1146
|
"properties": [
|
|
@@ -1000,7 +1153,7 @@
|
|
|
1000
1153
|
"immutable": true,
|
|
1001
1154
|
"locationInModule": {
|
|
1002
1155
|
"filename": "src/awscdk/github.ts",
|
|
1003
|
-
"line":
|
|
1156
|
+
"line": 17
|
|
1004
1157
|
},
|
|
1005
1158
|
"name": "assetPublishing",
|
|
1006
1159
|
"optional": true,
|
|
@@ -1017,7 +1170,7 @@
|
|
|
1017
1170
|
"immutable": true,
|
|
1018
1171
|
"locationInModule": {
|
|
1019
1172
|
"filename": "src/awscdk/github.ts",
|
|
1020
|
-
"line":
|
|
1173
|
+
"line": 13
|
|
1021
1174
|
},
|
|
1022
1175
|
"name": "default",
|
|
1023
1176
|
"optional": true,
|
|
@@ -1034,7 +1187,7 @@
|
|
|
1034
1187
|
"immutable": true,
|
|
1035
1188
|
"locationInModule": {
|
|
1036
1189
|
"filename": "src/awscdk/github.ts",
|
|
1037
|
-
"line":
|
|
1190
|
+
"line": 19
|
|
1038
1191
|
},
|
|
1039
1192
|
"name": "deployment",
|
|
1040
1193
|
"optional": true,
|
|
@@ -1056,7 +1209,7 @@
|
|
|
1056
1209
|
"immutable": true,
|
|
1057
1210
|
"locationInModule": {
|
|
1058
1211
|
"filename": "src/awscdk/github.ts",
|
|
1059
|
-
"line":
|
|
1212
|
+
"line": 15
|
|
1060
1213
|
},
|
|
1061
1214
|
"name": "synth",
|
|
1062
1215
|
"optional": true,
|
|
@@ -1067,6 +1220,66 @@
|
|
|
1067
1220
|
],
|
|
1068
1221
|
"symbolId": "src/awscdk/github:GithubIamRoleConfig"
|
|
1069
1222
|
},
|
|
1223
|
+
"projen-pipelines.GithubStepConfig": {
|
|
1224
|
+
"assembly": "projen-pipelines",
|
|
1225
|
+
"datatype": true,
|
|
1226
|
+
"docs": {
|
|
1227
|
+
"stability": "stable",
|
|
1228
|
+
"summary": "Configuration interface for a GitHub Actions step."
|
|
1229
|
+
},
|
|
1230
|
+
"fqn": "projen-pipelines.GithubStepConfig",
|
|
1231
|
+
"kind": "interface",
|
|
1232
|
+
"locationInModule": {
|
|
1233
|
+
"filename": "src/steps/step.ts",
|
|
1234
|
+
"line": 23
|
|
1235
|
+
},
|
|
1236
|
+
"name": "GithubStepConfig",
|
|
1237
|
+
"properties": [
|
|
1238
|
+
{
|
|
1239
|
+
"abstract": true,
|
|
1240
|
+
"docs": {
|
|
1241
|
+
"stability": "stable",
|
|
1242
|
+
"summary": "Dependencies which need to be completed before this step."
|
|
1243
|
+
},
|
|
1244
|
+
"immutable": true,
|
|
1245
|
+
"locationInModule": {
|
|
1246
|
+
"filename": "src/steps/step.ts",
|
|
1247
|
+
"line": 26
|
|
1248
|
+
},
|
|
1249
|
+
"name": "needs",
|
|
1250
|
+
"type": {
|
|
1251
|
+
"collection": {
|
|
1252
|
+
"elementtype": {
|
|
1253
|
+
"primitive": "string"
|
|
1254
|
+
},
|
|
1255
|
+
"kind": "array"
|
|
1256
|
+
}
|
|
1257
|
+
}
|
|
1258
|
+
},
|
|
1259
|
+
{
|
|
1260
|
+
"abstract": true,
|
|
1261
|
+
"docs": {
|
|
1262
|
+
"stability": "stable",
|
|
1263
|
+
"summary": "Commands wrapped as GitHub Action job steps."
|
|
1264
|
+
},
|
|
1265
|
+
"immutable": true,
|
|
1266
|
+
"locationInModule": {
|
|
1267
|
+
"filename": "src/steps/step.ts",
|
|
1268
|
+
"line": 29
|
|
1269
|
+
},
|
|
1270
|
+
"name": "steps",
|
|
1271
|
+
"type": {
|
|
1272
|
+
"collection": {
|
|
1273
|
+
"elementtype": {
|
|
1274
|
+
"fqn": "projen.github.workflows.JobStep"
|
|
1275
|
+
},
|
|
1276
|
+
"kind": "array"
|
|
1277
|
+
}
|
|
1278
|
+
}
|
|
1279
|
+
}
|
|
1280
|
+
],
|
|
1281
|
+
"symbolId": "src/steps/step:GithubStepConfig"
|
|
1282
|
+
},
|
|
1070
1283
|
"projen-pipelines.GitlabCDKPipeline": {
|
|
1071
1284
|
"assembly": "projen-pipelines",
|
|
1072
1285
|
"base": "projen-pipelines.CDKPipeline",
|
|
@@ -1083,7 +1296,7 @@
|
|
|
1083
1296
|
},
|
|
1084
1297
|
"locationInModule": {
|
|
1085
1298
|
"filename": "src/awscdk/gitlab.ts",
|
|
1086
|
-
"line":
|
|
1299
|
+
"line": 80
|
|
1087
1300
|
},
|
|
1088
1301
|
"parameters": [
|
|
1089
1302
|
{
|
|
@@ -1109,7 +1322,7 @@
|
|
|
1109
1322
|
"kind": "class",
|
|
1110
1323
|
"locationInModule": {
|
|
1111
1324
|
"filename": "src/awscdk/gitlab.ts",
|
|
1112
|
-
"line":
|
|
1325
|
+
"line": 59
|
|
1113
1326
|
},
|
|
1114
1327
|
"methods": [
|
|
1115
1328
|
{
|
|
@@ -1120,7 +1333,7 @@
|
|
|
1120
1333
|
},
|
|
1121
1334
|
"locationInModule": {
|
|
1122
1335
|
"filename": "src/awscdk/gitlab.ts",
|
|
1123
|
-
"line":
|
|
1336
|
+
"line": 211
|
|
1124
1337
|
},
|
|
1125
1338
|
"name": "createAssetUpload",
|
|
1126
1339
|
"protected": true
|
|
@@ -1133,7 +1346,7 @@
|
|
|
1133
1346
|
},
|
|
1134
1347
|
"locationInModule": {
|
|
1135
1348
|
"filename": "src/awscdk/gitlab.ts",
|
|
1136
|
-
"line":
|
|
1349
|
+
"line": 242
|
|
1137
1350
|
},
|
|
1138
1351
|
"name": "createDeployment",
|
|
1139
1352
|
"parameters": [
|
|
@@ -1157,11 +1370,27 @@
|
|
|
1157
1370
|
},
|
|
1158
1371
|
"locationInModule": {
|
|
1159
1372
|
"filename": "src/awscdk/gitlab.ts",
|
|
1160
|
-
"line":
|
|
1373
|
+
"line": 166
|
|
1161
1374
|
},
|
|
1162
1375
|
"name": "createSynth",
|
|
1163
1376
|
"protected": true
|
|
1164
1377
|
},
|
|
1378
|
+
{
|
|
1379
|
+
"docs": {
|
|
1380
|
+
"stability": "stable"
|
|
1381
|
+
},
|
|
1382
|
+
"locationInModule": {
|
|
1383
|
+
"filename": "src/awscdk/gitlab.ts",
|
|
1384
|
+
"line": 294
|
|
1385
|
+
},
|
|
1386
|
+
"name": "engineType",
|
|
1387
|
+
"overrides": "projen-pipelines.CDKPipeline",
|
|
1388
|
+
"returns": {
|
|
1389
|
+
"type": {
|
|
1390
|
+
"fqn": "projen-pipelines.PipelineEngine"
|
|
1391
|
+
}
|
|
1392
|
+
}
|
|
1393
|
+
},
|
|
1165
1394
|
{
|
|
1166
1395
|
"docs": {
|
|
1167
1396
|
"remarks": "This method defines reusable job configurations to be extended by specific pipeline jobs,\nfacilitating artifact caching and AWS authentication setup.",
|
|
@@ -1170,7 +1399,7 @@
|
|
|
1170
1399
|
},
|
|
1171
1400
|
"locationInModule": {
|
|
1172
1401
|
"filename": "src/awscdk/gitlab.ts",
|
|
1173
|
-
"line":
|
|
1402
|
+
"line": 108
|
|
1174
1403
|
},
|
|
1175
1404
|
"name": "setupSnippets",
|
|
1176
1405
|
"protected": true
|
|
@@ -1186,7 +1415,7 @@
|
|
|
1186
1415
|
"immutable": true,
|
|
1187
1416
|
"locationInModule": {
|
|
1188
1417
|
"filename": "src/awscdk/gitlab.ts",
|
|
1189
|
-
"line":
|
|
1418
|
+
"line": 68
|
|
1190
1419
|
},
|
|
1191
1420
|
"name": "config",
|
|
1192
1421
|
"type": {
|
|
@@ -1202,7 +1431,7 @@
|
|
|
1202
1431
|
"immutable": true,
|
|
1203
1432
|
"locationInModule": {
|
|
1204
1433
|
"filename": "src/awscdk/gitlab.ts",
|
|
1205
|
-
"line":
|
|
1434
|
+
"line": 65
|
|
1206
1435
|
},
|
|
1207
1436
|
"name": "jobImage",
|
|
1208
1437
|
"type": {
|
|
@@ -1218,7 +1447,7 @@
|
|
|
1218
1447
|
"immutable": true,
|
|
1219
1448
|
"locationInModule": {
|
|
1220
1449
|
"filename": "src/awscdk/gitlab.ts",
|
|
1221
|
-
"line":
|
|
1450
|
+
"line": 62
|
|
1222
1451
|
},
|
|
1223
1452
|
"name": "needsVersionedArtifacts",
|
|
1224
1453
|
"type": {
|
|
@@ -1242,7 +1471,7 @@
|
|
|
1242
1471
|
"kind": "interface",
|
|
1243
1472
|
"locationInModule": {
|
|
1244
1473
|
"filename": "src/awscdk/gitlab.ts",
|
|
1245
|
-
"line":
|
|
1474
|
+
"line": 43
|
|
1246
1475
|
},
|
|
1247
1476
|
"name": "GitlabCDKPipelineOptions",
|
|
1248
1477
|
"properties": [
|
|
@@ -1255,7 +1484,7 @@
|
|
|
1255
1484
|
"immutable": true,
|
|
1256
1485
|
"locationInModule": {
|
|
1257
1486
|
"filename": "src/awscdk/gitlab.ts",
|
|
1258
|
-
"line":
|
|
1487
|
+
"line": 45
|
|
1259
1488
|
},
|
|
1260
1489
|
"name": "iamRoleArns",
|
|
1261
1490
|
"type": {
|
|
@@ -1271,7 +1500,7 @@
|
|
|
1271
1500
|
"immutable": true,
|
|
1272
1501
|
"locationInModule": {
|
|
1273
1502
|
"filename": "src/awscdk/gitlab.ts",
|
|
1274
|
-
"line":
|
|
1503
|
+
"line": 49
|
|
1275
1504
|
},
|
|
1276
1505
|
"name": "image",
|
|
1277
1506
|
"optional": true,
|
|
@@ -1288,7 +1517,7 @@
|
|
|
1288
1517
|
"immutable": true,
|
|
1289
1518
|
"locationInModule": {
|
|
1290
1519
|
"filename": "src/awscdk/gitlab.ts",
|
|
1291
|
-
"line":
|
|
1520
|
+
"line": 47
|
|
1292
1521
|
},
|
|
1293
1522
|
"name": "runnerTags",
|
|
1294
1523
|
"optional": true,
|
|
@@ -1311,7 +1540,7 @@
|
|
|
1311
1540
|
"kind": "interface",
|
|
1312
1541
|
"locationInModule": {
|
|
1313
1542
|
"filename": "src/awscdk/gitlab.ts",
|
|
1314
|
-
"line":
|
|
1543
|
+
"line": 10
|
|
1315
1544
|
},
|
|
1316
1545
|
"name": "GitlabIamRoleConfig",
|
|
1317
1546
|
"properties": [
|
|
@@ -1324,7 +1553,7 @@
|
|
|
1324
1553
|
"immutable": true,
|
|
1325
1554
|
"locationInModule": {
|
|
1326
1555
|
"filename": "src/awscdk/gitlab.ts",
|
|
1327
|
-
"line":
|
|
1556
|
+
"line": 16
|
|
1328
1557
|
},
|
|
1329
1558
|
"name": "assetPublishing",
|
|
1330
1559
|
"optional": true,
|
|
@@ -1341,7 +1570,7 @@
|
|
|
1341
1570
|
"immutable": true,
|
|
1342
1571
|
"locationInModule": {
|
|
1343
1572
|
"filename": "src/awscdk/gitlab.ts",
|
|
1344
|
-
"line":
|
|
1573
|
+
"line": 12
|
|
1345
1574
|
},
|
|
1346
1575
|
"name": "default",
|
|
1347
1576
|
"optional": true,
|
|
@@ -1358,7 +1587,7 @@
|
|
|
1358
1587
|
"immutable": true,
|
|
1359
1588
|
"locationInModule": {
|
|
1360
1589
|
"filename": "src/awscdk/gitlab.ts",
|
|
1361
|
-
"line":
|
|
1590
|
+
"line": 20
|
|
1362
1591
|
},
|
|
1363
1592
|
"name": "deployment",
|
|
1364
1593
|
"optional": true,
|
|
@@ -1380,7 +1609,7 @@
|
|
|
1380
1609
|
"immutable": true,
|
|
1381
1610
|
"locationInModule": {
|
|
1382
1611
|
"filename": "src/awscdk/gitlab.ts",
|
|
1383
|
-
"line":
|
|
1612
|
+
"line": 18
|
|
1384
1613
|
},
|
|
1385
1614
|
"name": "diff",
|
|
1386
1615
|
"optional": true,
|
|
@@ -1402,7 +1631,7 @@
|
|
|
1402
1631
|
"immutable": true,
|
|
1403
1632
|
"locationInModule": {
|
|
1404
1633
|
"filename": "src/awscdk/gitlab.ts",
|
|
1405
|
-
"line":
|
|
1634
|
+
"line": 14
|
|
1406
1635
|
},
|
|
1407
1636
|
"name": "synth",
|
|
1408
1637
|
"optional": true,
|
|
@@ -1425,7 +1654,7 @@
|
|
|
1425
1654
|
"kind": "interface",
|
|
1426
1655
|
"locationInModule": {
|
|
1427
1656
|
"filename": "src/awscdk/gitlab.ts",
|
|
1428
|
-
"line":
|
|
1657
|
+
"line": 27
|
|
1429
1658
|
},
|
|
1430
1659
|
"name": "GitlabRunnerTags",
|
|
1431
1660
|
"properties": [
|
|
@@ -1438,7 +1667,7 @@
|
|
|
1438
1667
|
"immutable": true,
|
|
1439
1668
|
"locationInModule": {
|
|
1440
1669
|
"filename": "src/awscdk/gitlab.ts",
|
|
1441
|
-
"line":
|
|
1670
|
+
"line": 33
|
|
1442
1671
|
},
|
|
1443
1672
|
"name": "assetPublishing",
|
|
1444
1673
|
"optional": true,
|
|
@@ -1460,7 +1689,7 @@
|
|
|
1460
1689
|
"immutable": true,
|
|
1461
1690
|
"locationInModule": {
|
|
1462
1691
|
"filename": "src/awscdk/gitlab.ts",
|
|
1463
|
-
"line":
|
|
1692
|
+
"line": 29
|
|
1464
1693
|
},
|
|
1465
1694
|
"name": "default",
|
|
1466
1695
|
"optional": true,
|
|
@@ -1482,7 +1711,7 @@
|
|
|
1482
1711
|
"immutable": true,
|
|
1483
1712
|
"locationInModule": {
|
|
1484
1713
|
"filename": "src/awscdk/gitlab.ts",
|
|
1485
|
-
"line":
|
|
1714
|
+
"line": 37
|
|
1486
1715
|
},
|
|
1487
1716
|
"name": "deployment",
|
|
1488
1717
|
"optional": true,
|
|
@@ -1509,7 +1738,7 @@
|
|
|
1509
1738
|
"immutable": true,
|
|
1510
1739
|
"locationInModule": {
|
|
1511
1740
|
"filename": "src/awscdk/gitlab.ts",
|
|
1512
|
-
"line":
|
|
1741
|
+
"line": 35
|
|
1513
1742
|
},
|
|
1514
1743
|
"name": "diff",
|
|
1515
1744
|
"optional": true,
|
|
@@ -1536,7 +1765,7 @@
|
|
|
1536
1765
|
"immutable": true,
|
|
1537
1766
|
"locationInModule": {
|
|
1538
1767
|
"filename": "src/awscdk/gitlab.ts",
|
|
1539
|
-
"line":
|
|
1768
|
+
"line": 31
|
|
1540
1769
|
},
|
|
1541
1770
|
"name": "synth",
|
|
1542
1771
|
"optional": true,
|
|
@@ -1552,6 +1781,87 @@
|
|
|
1552
1781
|
],
|
|
1553
1782
|
"symbolId": "src/awscdk/gitlab:GitlabRunnerTags"
|
|
1554
1783
|
},
|
|
1784
|
+
"projen-pipelines.GitlabStepConfig": {
|
|
1785
|
+
"assembly": "projen-pipelines",
|
|
1786
|
+
"datatype": true,
|
|
1787
|
+
"docs": {
|
|
1788
|
+
"stability": "stable",
|
|
1789
|
+
"summary": "Configuration interface for a GitLab CI step."
|
|
1790
|
+
},
|
|
1791
|
+
"fqn": "projen-pipelines.GitlabStepConfig",
|
|
1792
|
+
"kind": "interface",
|
|
1793
|
+
"locationInModule": {
|
|
1794
|
+
"filename": "src/steps/step.ts",
|
|
1795
|
+
"line": 8
|
|
1796
|
+
},
|
|
1797
|
+
"name": "GitlabStepConfig",
|
|
1798
|
+
"properties": [
|
|
1799
|
+
{
|
|
1800
|
+
"abstract": true,
|
|
1801
|
+
"docs": {
|
|
1802
|
+
"stability": "stable",
|
|
1803
|
+
"summary": "Shell commands to execute in this step."
|
|
1804
|
+
},
|
|
1805
|
+
"immutable": true,
|
|
1806
|
+
"locationInModule": {
|
|
1807
|
+
"filename": "src/steps/step.ts",
|
|
1808
|
+
"line": 17
|
|
1809
|
+
},
|
|
1810
|
+
"name": "commands",
|
|
1811
|
+
"type": {
|
|
1812
|
+
"collection": {
|
|
1813
|
+
"elementtype": {
|
|
1814
|
+
"primitive": "string"
|
|
1815
|
+
},
|
|
1816
|
+
"kind": "array"
|
|
1817
|
+
}
|
|
1818
|
+
}
|
|
1819
|
+
},
|
|
1820
|
+
{
|
|
1821
|
+
"abstract": true,
|
|
1822
|
+
"docs": {
|
|
1823
|
+
"stability": "stable",
|
|
1824
|
+
"summary": "List of job extensions related to the step."
|
|
1825
|
+
},
|
|
1826
|
+
"immutable": true,
|
|
1827
|
+
"locationInModule": {
|
|
1828
|
+
"filename": "src/steps/step.ts",
|
|
1829
|
+
"line": 11
|
|
1830
|
+
},
|
|
1831
|
+
"name": "extensions",
|
|
1832
|
+
"type": {
|
|
1833
|
+
"collection": {
|
|
1834
|
+
"elementtype": {
|
|
1835
|
+
"primitive": "string"
|
|
1836
|
+
},
|
|
1837
|
+
"kind": "array"
|
|
1838
|
+
}
|
|
1839
|
+
}
|
|
1840
|
+
},
|
|
1841
|
+
{
|
|
1842
|
+
"abstract": true,
|
|
1843
|
+
"docs": {
|
|
1844
|
+
"stability": "stable",
|
|
1845
|
+
"summary": "Dependencies which need to be completed before this step."
|
|
1846
|
+
},
|
|
1847
|
+
"immutable": true,
|
|
1848
|
+
"locationInModule": {
|
|
1849
|
+
"filename": "src/steps/step.ts",
|
|
1850
|
+
"line": 14
|
|
1851
|
+
},
|
|
1852
|
+
"name": "needs",
|
|
1853
|
+
"type": {
|
|
1854
|
+
"collection": {
|
|
1855
|
+
"elementtype": {
|
|
1856
|
+
"fqn": "projen.gitlab.Need"
|
|
1857
|
+
},
|
|
1858
|
+
"kind": "array"
|
|
1859
|
+
}
|
|
1860
|
+
}
|
|
1861
|
+
}
|
|
1862
|
+
],
|
|
1863
|
+
"symbolId": "src/steps/step:GitlabStepConfig"
|
|
1864
|
+
},
|
|
1555
1865
|
"projen-pipelines.PipelineEngine": {
|
|
1556
1866
|
"assembly": "projen-pipelines",
|
|
1557
1867
|
"docs": {
|
|
@@ -1562,8 +1872,8 @@
|
|
|
1562
1872
|
"fqn": "projen-pipelines.PipelineEngine",
|
|
1563
1873
|
"kind": "enum",
|
|
1564
1874
|
"locationInModule": {
|
|
1565
|
-
"filename": "src/
|
|
1566
|
-
"line":
|
|
1875
|
+
"filename": "src/engine.ts",
|
|
1876
|
+
"line": 6
|
|
1567
1877
|
},
|
|
1568
1878
|
"members": [
|
|
1569
1879
|
{
|
|
@@ -1579,10 +1889,253 @@
|
|
|
1579
1889
|
"summary": "Create a .gitlab-ci.yaml file."
|
|
1580
1890
|
},
|
|
1581
1891
|
"name": "GITLAB"
|
|
1892
|
+
},
|
|
1893
|
+
{
|
|
1894
|
+
"docs": {
|
|
1895
|
+
"stability": "stable",
|
|
1896
|
+
"summary": "Create bash scripts."
|
|
1897
|
+
},
|
|
1898
|
+
"name": "BASH"
|
|
1582
1899
|
}
|
|
1583
1900
|
],
|
|
1584
1901
|
"name": "PipelineEngine",
|
|
1585
|
-
"symbolId": "src/
|
|
1902
|
+
"symbolId": "src/engine:PipelineEngine"
|
|
1903
|
+
},
|
|
1904
|
+
"projen-pipelines.PipelineStep": {
|
|
1905
|
+
"abstract": true,
|
|
1906
|
+
"assembly": "projen-pipelines",
|
|
1907
|
+
"docs": {
|
|
1908
|
+
"stability": "stable",
|
|
1909
|
+
"summary": "Abstract class defining the structure of a pipeline step."
|
|
1910
|
+
},
|
|
1911
|
+
"fqn": "projen-pipelines.PipelineStep",
|
|
1912
|
+
"initializer": {
|
|
1913
|
+
"docs": {
|
|
1914
|
+
"stability": "stable",
|
|
1915
|
+
"summary": "Initializes a new instance of a PipelineStep with a reference to a projen project."
|
|
1916
|
+
},
|
|
1917
|
+
"locationInModule": {
|
|
1918
|
+
"filename": "src/steps/step.ts",
|
|
1919
|
+
"line": 50
|
|
1920
|
+
},
|
|
1921
|
+
"parameters": [
|
|
1922
|
+
{
|
|
1923
|
+
"docs": {
|
|
1924
|
+
"summary": "- The projen project reference."
|
|
1925
|
+
},
|
|
1926
|
+
"name": "project",
|
|
1927
|
+
"type": {
|
|
1928
|
+
"fqn": "projen.Project"
|
|
1929
|
+
}
|
|
1930
|
+
}
|
|
1931
|
+
]
|
|
1932
|
+
},
|
|
1933
|
+
"kind": "class",
|
|
1934
|
+
"locationInModule": {
|
|
1935
|
+
"filename": "src/steps/step.ts",
|
|
1936
|
+
"line": 44
|
|
1937
|
+
},
|
|
1938
|
+
"methods": [
|
|
1939
|
+
{
|
|
1940
|
+
"abstract": true,
|
|
1941
|
+
"docs": {
|
|
1942
|
+
"remarks": "Must be implemented by subclasses.",
|
|
1943
|
+
"stability": "stable",
|
|
1944
|
+
"summary": "Generates a configuration for a bash script step."
|
|
1945
|
+
},
|
|
1946
|
+
"locationInModule": {
|
|
1947
|
+
"filename": "src/steps/step.ts",
|
|
1948
|
+
"line": 67
|
|
1949
|
+
},
|
|
1950
|
+
"name": "toBash",
|
|
1951
|
+
"returns": {
|
|
1952
|
+
"type": {
|
|
1953
|
+
"fqn": "projen-pipelines.BashStepConfig"
|
|
1954
|
+
}
|
|
1955
|
+
}
|
|
1956
|
+
},
|
|
1957
|
+
{
|
|
1958
|
+
"abstract": true,
|
|
1959
|
+
"docs": {
|
|
1960
|
+
"remarks": "Must be implemented by subclasses.",
|
|
1961
|
+
"stability": "stable",
|
|
1962
|
+
"summary": "Generates a configuration for a GitHub Actions step."
|
|
1963
|
+
},
|
|
1964
|
+
"locationInModule": {
|
|
1965
|
+
"filename": "src/steps/step.ts",
|
|
1966
|
+
"line": 62
|
|
1967
|
+
},
|
|
1968
|
+
"name": "toGithub",
|
|
1969
|
+
"returns": {
|
|
1970
|
+
"type": {
|
|
1971
|
+
"fqn": "projen-pipelines.GithubStepConfig"
|
|
1972
|
+
}
|
|
1973
|
+
}
|
|
1974
|
+
},
|
|
1975
|
+
{
|
|
1976
|
+
"abstract": true,
|
|
1977
|
+
"docs": {
|
|
1978
|
+
"remarks": "Must be implemented by subclasses.",
|
|
1979
|
+
"stability": "stable",
|
|
1980
|
+
"summary": "Generates a configuration for a GitLab CI step."
|
|
1981
|
+
},
|
|
1982
|
+
"locationInModule": {
|
|
1983
|
+
"filename": "src/steps/step.ts",
|
|
1984
|
+
"line": 57
|
|
1985
|
+
},
|
|
1986
|
+
"name": "toGitlab",
|
|
1987
|
+
"returns": {
|
|
1988
|
+
"type": {
|
|
1989
|
+
"fqn": "projen-pipelines.GitlabStepConfig"
|
|
1990
|
+
}
|
|
1991
|
+
}
|
|
1992
|
+
}
|
|
1993
|
+
],
|
|
1994
|
+
"name": "PipelineStep",
|
|
1995
|
+
"properties": [
|
|
1996
|
+
{
|
|
1997
|
+
"docs": {
|
|
1998
|
+
"stability": "stable",
|
|
1999
|
+
"summary": "- The projen project reference."
|
|
2000
|
+
},
|
|
2001
|
+
"locationInModule": {
|
|
2002
|
+
"filename": "src/steps/step.ts",
|
|
2003
|
+
"line": 50
|
|
2004
|
+
},
|
|
2005
|
+
"name": "project",
|
|
2006
|
+
"protected": true,
|
|
2007
|
+
"type": {
|
|
2008
|
+
"fqn": "projen.Project"
|
|
2009
|
+
}
|
|
2010
|
+
}
|
|
2011
|
+
],
|
|
2012
|
+
"symbolId": "src/steps/step:PipelineStep"
|
|
2013
|
+
},
|
|
2014
|
+
"projen-pipelines.SimpleCommandStep": {
|
|
2015
|
+
"assembly": "projen-pipelines",
|
|
2016
|
+
"base": "projen-pipelines.PipelineStep",
|
|
2017
|
+
"docs": {
|
|
2018
|
+
"stability": "stable",
|
|
2019
|
+
"summary": "Concrete implementation of PipelineStep that executes simple commands."
|
|
2020
|
+
},
|
|
2021
|
+
"fqn": "projen-pipelines.SimpleCommandStep",
|
|
2022
|
+
"initializer": {
|
|
2023
|
+
"docs": {
|
|
2024
|
+
"stability": "stable",
|
|
2025
|
+
"summary": "Constructs a simple command step with a specified set of commands."
|
|
2026
|
+
},
|
|
2027
|
+
"locationInModule": {
|
|
2028
|
+
"filename": "src/steps/step.ts",
|
|
2029
|
+
"line": 80
|
|
2030
|
+
},
|
|
2031
|
+
"parameters": [
|
|
2032
|
+
{
|
|
2033
|
+
"docs": {
|
|
2034
|
+
"summary": "- The projen project reference."
|
|
2035
|
+
},
|
|
2036
|
+
"name": "project",
|
|
2037
|
+
"type": {
|
|
2038
|
+
"fqn": "projen.Project"
|
|
2039
|
+
}
|
|
2040
|
+
},
|
|
2041
|
+
{
|
|
2042
|
+
"docs": {
|
|
2043
|
+
"summary": "- Shell commands to execute."
|
|
2044
|
+
},
|
|
2045
|
+
"name": "commands",
|
|
2046
|
+
"type": {
|
|
2047
|
+
"collection": {
|
|
2048
|
+
"elementtype": {
|
|
2049
|
+
"primitive": "string"
|
|
2050
|
+
},
|
|
2051
|
+
"kind": "array"
|
|
2052
|
+
}
|
|
2053
|
+
}
|
|
2054
|
+
}
|
|
2055
|
+
]
|
|
2056
|
+
},
|
|
2057
|
+
"kind": "class",
|
|
2058
|
+
"locationInModule": {
|
|
2059
|
+
"filename": "src/steps/step.ts",
|
|
2060
|
+
"line": 73
|
|
2061
|
+
},
|
|
2062
|
+
"methods": [
|
|
2063
|
+
{
|
|
2064
|
+
"docs": {
|
|
2065
|
+
"stability": "stable",
|
|
2066
|
+
"summary": "Converts the step into a Bash script configuration."
|
|
2067
|
+
},
|
|
2068
|
+
"locationInModule": {
|
|
2069
|
+
"filename": "src/steps/step.ts",
|
|
2070
|
+
"line": 98
|
|
2071
|
+
},
|
|
2072
|
+
"name": "toBash",
|
|
2073
|
+
"overrides": "projen-pipelines.PipelineStep",
|
|
2074
|
+
"returns": {
|
|
2075
|
+
"type": {
|
|
2076
|
+
"fqn": "projen-pipelines.BashStepConfig"
|
|
2077
|
+
}
|
|
2078
|
+
}
|
|
2079
|
+
},
|
|
2080
|
+
{
|
|
2081
|
+
"docs": {
|
|
2082
|
+
"stability": "stable",
|
|
2083
|
+
"summary": "Converts the step into a GitHub Actions step configuration."
|
|
2084
|
+
},
|
|
2085
|
+
"locationInModule": {
|
|
2086
|
+
"filename": "src/steps/step.ts",
|
|
2087
|
+
"line": 107
|
|
2088
|
+
},
|
|
2089
|
+
"name": "toGithub",
|
|
2090
|
+
"overrides": "projen-pipelines.PipelineStep",
|
|
2091
|
+
"returns": {
|
|
2092
|
+
"type": {
|
|
2093
|
+
"fqn": "projen-pipelines.GithubStepConfig"
|
|
2094
|
+
}
|
|
2095
|
+
}
|
|
2096
|
+
},
|
|
2097
|
+
{
|
|
2098
|
+
"docs": {
|
|
2099
|
+
"stability": "stable",
|
|
2100
|
+
"summary": "Converts the step into a GitLab CI configuration."
|
|
2101
|
+
},
|
|
2102
|
+
"locationInModule": {
|
|
2103
|
+
"filename": "src/steps/step.ts",
|
|
2104
|
+
"line": 87
|
|
2105
|
+
},
|
|
2106
|
+
"name": "toGitlab",
|
|
2107
|
+
"overrides": "projen-pipelines.PipelineStep",
|
|
2108
|
+
"returns": {
|
|
2109
|
+
"type": {
|
|
2110
|
+
"fqn": "projen-pipelines.GitlabStepConfig"
|
|
2111
|
+
}
|
|
2112
|
+
}
|
|
2113
|
+
}
|
|
2114
|
+
],
|
|
2115
|
+
"name": "SimpleCommandStep",
|
|
2116
|
+
"properties": [
|
|
2117
|
+
{
|
|
2118
|
+
"docs": {
|
|
2119
|
+
"stability": "stable",
|
|
2120
|
+
"summary": "- Shell commands to execute."
|
|
2121
|
+
},
|
|
2122
|
+
"locationInModule": {
|
|
2123
|
+
"filename": "src/steps/step.ts",
|
|
2124
|
+
"line": 80
|
|
2125
|
+
},
|
|
2126
|
+
"name": "commands",
|
|
2127
|
+
"protected": true,
|
|
2128
|
+
"type": {
|
|
2129
|
+
"collection": {
|
|
2130
|
+
"elementtype": {
|
|
2131
|
+
"primitive": "string"
|
|
2132
|
+
},
|
|
2133
|
+
"kind": "array"
|
|
2134
|
+
}
|
|
2135
|
+
}
|
|
2136
|
+
}
|
|
2137
|
+
],
|
|
2138
|
+
"symbolId": "src/steps/step:SimpleCommandStep"
|
|
1586
2139
|
},
|
|
1587
2140
|
"projen-pipelines.StageOptions": {
|
|
1588
2141
|
"assembly": "projen-pipelines",
|
|
@@ -1594,7 +2147,7 @@
|
|
|
1594
2147
|
"kind": "interface",
|
|
1595
2148
|
"locationInModule": {
|
|
1596
2149
|
"filename": "src/awscdk/base.ts",
|
|
1597
|
-
"line":
|
|
2150
|
+
"line": 44
|
|
1598
2151
|
},
|
|
1599
2152
|
"name": "StageOptions",
|
|
1600
2153
|
"properties": [
|
|
@@ -1606,7 +2159,7 @@
|
|
|
1606
2159
|
"immutable": true,
|
|
1607
2160
|
"locationInModule": {
|
|
1608
2161
|
"filename": "src/awscdk/base.ts",
|
|
1609
|
-
"line":
|
|
2162
|
+
"line": 45
|
|
1610
2163
|
},
|
|
1611
2164
|
"name": "env",
|
|
1612
2165
|
"type": {
|
|
@@ -1617,6 +2170,6 @@
|
|
|
1617
2170
|
"symbolId": "src/awscdk/base:StageOptions"
|
|
1618
2171
|
}
|
|
1619
2172
|
},
|
|
1620
|
-
"version": "0.0.
|
|
1621
|
-
"fingerprint": "
|
|
2173
|
+
"version": "0.0.57",
|
|
2174
|
+
"fingerprint": "lOrDXXj98+hCqqxr9eEOPb1la3EmN65btPIhGoWmduY="
|
|
1622
2175
|
}
|