@catladder/pipeline 1.109.2 → 1.110.1
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/dist/build/node/buildJob.js +10 -7
- package/dist/build/node/testJob.js +8 -5
- package/dist/build/rails/test.js +7 -7
- package/dist/build/types.d.ts +5 -1
- package/dist/bundles/catladder-gitlab/index.js +1 -1
- package/dist/constants.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/examples/__snapshots__/cloud-run-memory-limit.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-no-cpu-throttling.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-non-public.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-with-sql-reuse-db.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-with-sql.ts.snap +8 -0
- package/examples/__snapshots__/custom-deploy.ts.snap +4 -0
- package/examples/__snapshots__/custom-envs.ts.snap +4 -0
- package/examples/__snapshots__/kubernetes-application-customization.ts.snap +4 -0
- package/examples/__snapshots__/kubernetes-with-cloud-sql-legacy.ts.snap +4 -0
- package/examples/__snapshots__/kubernetes-with-cloud-sql.ts.snap +4 -0
- package/examples/__snapshots__/kubernetes-with-jobs.ts.snap +8 -0
- package/examples/__snapshots__/kubernetes-with-mongodb.ts.snap +4 -0
- package/examples/__snapshots__/native-app.ts.snap +8 -0
- package/examples/__snapshots__/node-build-with-custom-image.ts.snap +1812 -0
- package/examples/__snapshots__/wait-for-other-deploy.ts.snap +8 -0
- package/examples/node-build-with-custom-image.ts +25 -0
- package/package.json +1 -1
- package/src/build/node/buildJob.ts +3 -0
- package/src/build/node/testJob.ts +5 -4
- package/src/build/rails/test.ts +6 -3
- package/src/build/types.ts +5 -1
|
@@ -119,6 +119,7 @@ cronjobs:
|
|
|
119
119
|
"policy": "pull-push",
|
|
120
120
|
},
|
|
121
121
|
],
|
|
122
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
122
123
|
"interruptible": true,
|
|
123
124
|
"needs": [],
|
|
124
125
|
"retry": {
|
|
@@ -518,6 +519,7 @@ cronjobs:
|
|
|
518
519
|
},
|
|
519
520
|
"api 🛡 audit": {
|
|
520
521
|
"allow_failure": true,
|
|
522
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
521
523
|
"interruptible": true,
|
|
522
524
|
"needs": [],
|
|
523
525
|
"retry": {
|
|
@@ -735,6 +737,7 @@ application:
|
|
|
735
737
|
"policy": "pull-push",
|
|
736
738
|
},
|
|
737
739
|
],
|
|
740
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
738
741
|
"interruptible": true,
|
|
739
742
|
"needs": [],
|
|
740
743
|
"retry": {
|
|
@@ -1120,6 +1123,7 @@ application:
|
|
|
1120
1123
|
},
|
|
1121
1124
|
"www 🛡 audit": {
|
|
1122
1125
|
"allow_failure": true,
|
|
1126
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
1123
1127
|
"interruptible": true,
|
|
1124
1128
|
"needs": [],
|
|
1125
1129
|
"retry": {
|
|
@@ -1413,6 +1417,7 @@ cronjobs: {}
|
|
|
1413
1417
|
"policy": "pull-push",
|
|
1414
1418
|
},
|
|
1415
1419
|
],
|
|
1420
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
1416
1421
|
"interruptible": true,
|
|
1417
1422
|
"needs": [],
|
|
1418
1423
|
"retry": {
|
|
@@ -1806,6 +1811,7 @@ cronjobs: {}
|
|
|
1806
1811
|
},
|
|
1807
1812
|
"api 🛡 audit": {
|
|
1808
1813
|
"allow_failure": true,
|
|
1814
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
1809
1815
|
"interruptible": true,
|
|
1810
1816
|
"needs": [],
|
|
1811
1817
|
"retry": {
|
|
@@ -2023,6 +2029,7 @@ application:
|
|
|
2023
2029
|
"policy": "pull-push",
|
|
2024
2030
|
},
|
|
2025
2031
|
],
|
|
2032
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
2026
2033
|
"interruptible": true,
|
|
2027
2034
|
"needs": [],
|
|
2028
2035
|
"retry": {
|
|
@@ -2408,6 +2415,7 @@ application:
|
|
|
2408
2415
|
},
|
|
2409
2416
|
"www 🛡 audit": {
|
|
2410
2417
|
"allow_failure": true,
|
|
2418
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
2411
2419
|
"interruptible": true,
|
|
2412
2420
|
"needs": [],
|
|
2413
2421
|
"retry": {
|
|
@@ -139,6 +139,7 @@ mongodb:
|
|
|
139
139
|
"policy": "pull-push",
|
|
140
140
|
},
|
|
141
141
|
],
|
|
142
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
142
143
|
"interruptible": true,
|
|
143
144
|
"needs": [],
|
|
144
145
|
"retry": {
|
|
@@ -580,6 +581,7 @@ mongodb:
|
|
|
580
581
|
},
|
|
581
582
|
"api 🛡 audit": {
|
|
582
583
|
"allow_failure": true,
|
|
584
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
583
585
|
"interruptible": true,
|
|
584
586
|
"needs": [],
|
|
585
587
|
"retry": {
|
|
@@ -896,6 +898,7 @@ mongodb:
|
|
|
896
898
|
"policy": "pull-push",
|
|
897
899
|
},
|
|
898
900
|
],
|
|
901
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
899
902
|
"interruptible": true,
|
|
900
903
|
"needs": [],
|
|
901
904
|
"retry": {
|
|
@@ -1337,6 +1340,7 @@ mongodb:
|
|
|
1337
1340
|
},
|
|
1338
1341
|
"api 🛡 audit": {
|
|
1339
1342
|
"allow_failure": true,
|
|
1343
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
1340
1344
|
"interruptible": true,
|
|
1341
1345
|
"needs": [],
|
|
1342
1346
|
"retry": {
|
|
@@ -22,6 +22,7 @@ exports[`matches snapshot 1`] = `
|
|
|
22
22
|
"policy": "pull-push",
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
25
26
|
"interruptible": true,
|
|
26
27
|
"needs": [],
|
|
27
28
|
"retry": {
|
|
@@ -352,6 +353,7 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
352
353
|
},
|
|
353
354
|
"api 🛡 audit": {
|
|
354
355
|
"allow_failure": true,
|
|
356
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
355
357
|
"interruptible": true,
|
|
356
358
|
"needs": [],
|
|
357
359
|
"retry": {
|
|
@@ -479,6 +481,7 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
479
481
|
"policy": "pull-push",
|
|
480
482
|
},
|
|
481
483
|
],
|
|
484
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
482
485
|
"interruptible": true,
|
|
483
486
|
"needs": [],
|
|
484
487
|
"retry": {
|
|
@@ -701,6 +704,7 @@ EOF",
|
|
|
701
704
|
},
|
|
702
705
|
"app 🛡 audit": {
|
|
703
706
|
"allow_failure": true,
|
|
707
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
704
708
|
"interruptible": true,
|
|
705
709
|
"needs": [],
|
|
706
710
|
"retry": {
|
|
@@ -904,6 +908,7 @@ EOF",
|
|
|
904
908
|
"policy": "pull-push",
|
|
905
909
|
},
|
|
906
910
|
],
|
|
911
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
907
912
|
"interruptible": true,
|
|
908
913
|
"needs": [],
|
|
909
914
|
"retry": {
|
|
@@ -1234,6 +1239,7 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
1234
1239
|
},
|
|
1235
1240
|
"api 🛡 audit": {
|
|
1236
1241
|
"allow_failure": true,
|
|
1242
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
1237
1243
|
"interruptible": true,
|
|
1238
1244
|
"needs": [],
|
|
1239
1245
|
"retry": {
|
|
@@ -1361,6 +1367,7 @@ _ALL_ENV_VAR_KEYS: '["ENV_SHORT","APP_DIR","ENV_TYPE","BUILD_INFO_ID","BUILD_INF
|
|
|
1361
1367
|
"policy": "pull-push",
|
|
1362
1368
|
},
|
|
1363
1369
|
],
|
|
1370
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
1364
1371
|
"interruptible": true,
|
|
1365
1372
|
"needs": [],
|
|
1366
1373
|
"retry": {
|
|
@@ -1583,6 +1590,7 @@ EOF",
|
|
|
1583
1590
|
},
|
|
1584
1591
|
"app 🛡 audit": {
|
|
1585
1592
|
"allow_failure": true,
|
|
1593
|
+
"image": "path/to/docker/jobs-default:the-version",
|
|
1586
1594
|
"interruptible": true,
|
|
1587
1595
|
"needs": [],
|
|
1588
1596
|
"retry": {
|