@catladder/pipeline 3.34.1 → 3.35.0
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/cache.js +6 -3
- package/dist/constants.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/examples/__snapshots__/automatic-releases.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-execute-script-on-deploy.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-health-check-defaults.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-health-check-only-startup.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-health-check.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-http2.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-memory-limit.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-meteor-with-worker.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-nextjs.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-no-cpu-throttling.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-no-service.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-non-public.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-post-stop-job.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-service-custom-vpc-connector.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-service-custom-vpc.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-service-gen2.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-service-increase-timout.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-service-with-volumes.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-storybook.test.ts.snap +4 -0
- package/examples/__snapshots__/cloud-run-with-agents.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-with-gpu.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-with-ngnix.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-with-sql-legacy-jobs.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-with-sql-multiple-dbs.test.ts.snap +24 -0
- package/examples/__snapshots__/cloud-run-with-sql-reuse-db.test.ts.snap +16 -0
- package/examples/__snapshots__/cloud-run-with-sql.test.ts.snap +8 -0
- package/examples/__snapshots__/cloud-run-with-worker.test.ts.snap +8 -0
- package/examples/__snapshots__/custom-deploy.test.ts.snap +8 -0
- package/examples/__snapshots__/custom-docker-file.test.ts.snap +8 -0
- package/examples/__snapshots__/custom-envs.test.ts.snap +14 -0
- package/examples/__snapshots__/custom-verify-job.test.ts.snap +8 -0
- package/examples/__snapshots__/git-submodule.test.ts.snap +8 -0
- package/examples/__snapshots__/kubernetes-application-customization.test.ts.snap +8 -0
- package/examples/__snapshots__/kubernetes-with-cloud-sql.test.ts.snap +8 -0
- package/examples/__snapshots__/kubernetes-with-jobs.test.ts.snap +16 -0
- package/examples/__snapshots__/kubernetes-with-mongodb.test.ts.snap +8 -0
- package/examples/__snapshots__/local-dot-env.test.ts.snap +8 -0
- package/examples/__snapshots__/meteor-kubernetes.test.ts.snap +8 -0
- package/examples/__snapshots__/modify-generated-files.test.ts.snap +8 -0
- package/examples/__snapshots__/modify-generated-yaml.test.ts.snap +8 -0
- package/examples/__snapshots__/multiline-var.test.ts.snap +24 -0
- package/examples/__snapshots__/native-app.test.ts.snap +16 -0
- package/examples/__snapshots__/node-build-with-custom-image.test.ts.snap +8 -0
- package/examples/__snapshots__/node-build-with-docker-additions.test.ts.snap +8 -0
- package/examples/__snapshots__/override-secrets.test.ts.snap +8 -0
- package/examples/__snapshots__/referencing-other-vars.test.ts.snap +24 -0
- package/examples/__snapshots__/wait-for-other-deploy.test.ts.snap +16 -0
- package/examples/__snapshots__/workspace-api-www-turbo-cache.test.ts.snap +8 -0
- package/examples/__snapshots__/workspace-api-www.test.ts.snap +8 -0
- package/package.json +1 -1
- package/src/build/node/cache.ts +16 -1
|
@@ -158,6 +158,7 @@ before_script:
|
|
|
158
158
|
policy: pull-push
|
|
159
159
|
paths:
|
|
160
160
|
- packages/db1/node_modules
|
|
161
|
+
- packages/db1/.yarn/install-state.gz
|
|
161
162
|
rules:
|
|
162
163
|
- when: never
|
|
163
164
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -198,6 +199,7 @@ before_script:
|
|
|
198
199
|
policy: pull-push
|
|
199
200
|
paths:
|
|
200
201
|
- packages/db1/node_modules
|
|
202
|
+
- packages/db1/.yarn/install-state.gz
|
|
201
203
|
rules:
|
|
202
204
|
- when: never
|
|
203
205
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -284,6 +286,7 @@ before_script:
|
|
|
284
286
|
policy: pull-push
|
|
285
287
|
paths:
|
|
286
288
|
- packages/db1/node_modules
|
|
289
|
+
- packages/db1/.yarn/install-state.gz
|
|
287
290
|
artifacts:
|
|
288
291
|
paths:
|
|
289
292
|
- packages/db1/__build_info.json
|
|
@@ -623,6 +626,7 @@ before_script:
|
|
|
623
626
|
policy: pull-push
|
|
624
627
|
paths:
|
|
625
628
|
- packages/db1/node_modules
|
|
629
|
+
- packages/db1/.yarn/install-state.gz
|
|
626
630
|
fallback_keys:
|
|
627
631
|
- packagesdb1-node-modules
|
|
628
632
|
rules:
|
|
@@ -667,6 +671,7 @@ before_script:
|
|
|
667
671
|
policy: pull-push
|
|
668
672
|
paths:
|
|
669
673
|
- packages/db1/node_modules
|
|
674
|
+
- packages/db1/.yarn/install-state.gz
|
|
670
675
|
fallback_keys:
|
|
671
676
|
- packagesdb1-node-modules
|
|
672
677
|
rules:
|
|
@@ -757,6 +762,7 @@ before_script:
|
|
|
757
762
|
policy: pull-push
|
|
758
763
|
paths:
|
|
759
764
|
- packages/db1/node_modules
|
|
765
|
+
- packages/db1/.yarn/install-state.gz
|
|
760
766
|
fallback_keys:
|
|
761
767
|
- packagesdb1-node-modules
|
|
762
768
|
artifacts:
|
|
@@ -1132,6 +1138,7 @@ before_script:
|
|
|
1132
1138
|
policy: pull-push
|
|
1133
1139
|
paths:
|
|
1134
1140
|
- packages/db1/node_modules
|
|
1141
|
+
- packages/db1/.yarn/install-state.gz
|
|
1135
1142
|
artifacts:
|
|
1136
1143
|
paths:
|
|
1137
1144
|
- packages/db1/__build_info.json
|
|
@@ -1487,6 +1494,7 @@ before_script:
|
|
|
1487
1494
|
policy: pull-push
|
|
1488
1495
|
paths:
|
|
1489
1496
|
- packages/db1/node_modules
|
|
1497
|
+
- packages/db1/.yarn/install-state.gz
|
|
1490
1498
|
artifacts:
|
|
1491
1499
|
paths:
|
|
1492
1500
|
- packages/db1/__build_info.json
|
|
@@ -1817,6 +1825,7 @@ before_script:
|
|
|
1817
1825
|
policy: pull-push
|
|
1818
1826
|
paths:
|
|
1819
1827
|
- packages/db2/node_modules
|
|
1828
|
+
- packages/db2/.yarn/install-state.gz
|
|
1820
1829
|
rules:
|
|
1821
1830
|
- when: never
|
|
1822
1831
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -1857,6 +1866,7 @@ before_script:
|
|
|
1857
1866
|
policy: pull-push
|
|
1858
1867
|
paths:
|
|
1859
1868
|
- packages/db2/node_modules
|
|
1869
|
+
- packages/db2/.yarn/install-state.gz
|
|
1860
1870
|
rules:
|
|
1861
1871
|
- when: never
|
|
1862
1872
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -1943,6 +1953,7 @@ before_script:
|
|
|
1943
1953
|
policy: pull-push
|
|
1944
1954
|
paths:
|
|
1945
1955
|
- packages/db2/node_modules
|
|
1956
|
+
- packages/db2/.yarn/install-state.gz
|
|
1946
1957
|
artifacts:
|
|
1947
1958
|
paths:
|
|
1948
1959
|
- packages/db2/__build_info.json
|
|
@@ -2282,6 +2293,7 @@ before_script:
|
|
|
2282
2293
|
policy: pull-push
|
|
2283
2294
|
paths:
|
|
2284
2295
|
- packages/db2/node_modules
|
|
2296
|
+
- packages/db2/.yarn/install-state.gz
|
|
2285
2297
|
fallback_keys:
|
|
2286
2298
|
- packagesdb2-node-modules
|
|
2287
2299
|
rules:
|
|
@@ -2326,6 +2338,7 @@ before_script:
|
|
|
2326
2338
|
policy: pull-push
|
|
2327
2339
|
paths:
|
|
2328
2340
|
- packages/db2/node_modules
|
|
2341
|
+
- packages/db2/.yarn/install-state.gz
|
|
2329
2342
|
fallback_keys:
|
|
2330
2343
|
- packagesdb2-node-modules
|
|
2331
2344
|
rules:
|
|
@@ -2416,6 +2429,7 @@ before_script:
|
|
|
2416
2429
|
policy: pull-push
|
|
2417
2430
|
paths:
|
|
2418
2431
|
- packages/db2/node_modules
|
|
2432
|
+
- packages/db2/.yarn/install-state.gz
|
|
2419
2433
|
fallback_keys:
|
|
2420
2434
|
- packagesdb2-node-modules
|
|
2421
2435
|
artifacts:
|
|
@@ -2791,6 +2805,7 @@ before_script:
|
|
|
2791
2805
|
policy: pull-push
|
|
2792
2806
|
paths:
|
|
2793
2807
|
- packages/db2/node_modules
|
|
2808
|
+
- packages/db2/.yarn/install-state.gz
|
|
2794
2809
|
artifacts:
|
|
2795
2810
|
paths:
|
|
2796
2811
|
- packages/db2/__build_info.json
|
|
@@ -3146,6 +3161,7 @@ before_script:
|
|
|
3146
3161
|
policy: pull-push
|
|
3147
3162
|
paths:
|
|
3148
3163
|
- packages/db2/node_modules
|
|
3164
|
+
- packages/db2/.yarn/install-state.gz
|
|
3149
3165
|
artifacts:
|
|
3150
3166
|
paths:
|
|
3151
3167
|
- packages/db2/__build_info.json
|
|
@@ -3476,6 +3492,7 @@ before_script:
|
|
|
3476
3492
|
policy: pull-push
|
|
3477
3493
|
paths:
|
|
3478
3494
|
- api/node_modules
|
|
3495
|
+
- api/.yarn/install-state.gz
|
|
3479
3496
|
rules:
|
|
3480
3497
|
- when: never
|
|
3481
3498
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -3516,6 +3533,7 @@ before_script:
|
|
|
3516
3533
|
policy: pull-push
|
|
3517
3534
|
paths:
|
|
3518
3535
|
- api/node_modules
|
|
3536
|
+
- api/.yarn/install-state.gz
|
|
3519
3537
|
rules:
|
|
3520
3538
|
- when: never
|
|
3521
3539
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -3602,6 +3620,7 @@ before_script:
|
|
|
3602
3620
|
policy: pull-push
|
|
3603
3621
|
paths:
|
|
3604
3622
|
- api/node_modules
|
|
3623
|
+
- api/.yarn/install-state.gz
|
|
3605
3624
|
artifacts:
|
|
3606
3625
|
paths:
|
|
3607
3626
|
- api/__build_info.json
|
|
@@ -3930,6 +3949,7 @@ before_script:
|
|
|
3930
3949
|
policy: pull-push
|
|
3931
3950
|
paths:
|
|
3932
3951
|
- api/node_modules
|
|
3952
|
+
- api/.yarn/install-state.gz
|
|
3933
3953
|
fallback_keys:
|
|
3934
3954
|
- api-node-modules
|
|
3935
3955
|
rules:
|
|
@@ -3974,6 +3994,7 @@ before_script:
|
|
|
3974
3994
|
policy: pull-push
|
|
3975
3995
|
paths:
|
|
3976
3996
|
- api/node_modules
|
|
3997
|
+
- api/.yarn/install-state.gz
|
|
3977
3998
|
fallback_keys:
|
|
3978
3999
|
- api-node-modules
|
|
3979
4000
|
rules:
|
|
@@ -4064,6 +4085,7 @@ before_script:
|
|
|
4064
4085
|
policy: pull-push
|
|
4065
4086
|
paths:
|
|
4066
4087
|
- api/node_modules
|
|
4088
|
+
- api/.yarn/install-state.gz
|
|
4067
4089
|
fallback_keys:
|
|
4068
4090
|
- api-node-modules
|
|
4069
4091
|
artifacts:
|
|
@@ -4428,6 +4450,7 @@ before_script:
|
|
|
4428
4450
|
policy: pull-push
|
|
4429
4451
|
paths:
|
|
4430
4452
|
- api/node_modules
|
|
4453
|
+
- api/.yarn/install-state.gz
|
|
4431
4454
|
artifacts:
|
|
4432
4455
|
paths:
|
|
4433
4456
|
- api/__build_info.json
|
|
@@ -4772,6 +4795,7 @@ before_script:
|
|
|
4772
4795
|
policy: pull-push
|
|
4773
4796
|
paths:
|
|
4774
4797
|
- api/node_modules
|
|
4798
|
+
- api/.yarn/install-state.gz
|
|
4775
4799
|
artifacts:
|
|
4776
4800
|
paths:
|
|
4777
4801
|
- api/__build_info.json
|
|
@@ -158,6 +158,7 @@ before_script:
|
|
|
158
158
|
policy: pull-push
|
|
159
159
|
paths:
|
|
160
160
|
- api/node_modules
|
|
161
|
+
- api/.yarn/install-state.gz
|
|
161
162
|
rules:
|
|
162
163
|
- when: never
|
|
163
164
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -198,6 +199,7 @@ before_script:
|
|
|
198
199
|
policy: pull-push
|
|
199
200
|
paths:
|
|
200
201
|
- api/node_modules
|
|
202
|
+
- api/.yarn/install-state.gz
|
|
201
203
|
rules:
|
|
202
204
|
- when: never
|
|
203
205
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -282,6 +284,7 @@ before_script:
|
|
|
282
284
|
policy: pull-push
|
|
283
285
|
paths:
|
|
284
286
|
- api/node_modules
|
|
287
|
+
- api/.yarn/install-state.gz
|
|
285
288
|
artifacts:
|
|
286
289
|
paths:
|
|
287
290
|
- api/__build_info.json
|
|
@@ -607,6 +610,7 @@ before_script:
|
|
|
607
610
|
policy: pull-push
|
|
608
611
|
paths:
|
|
609
612
|
- api/node_modules
|
|
613
|
+
- api/.yarn/install-state.gz
|
|
610
614
|
fallback_keys:
|
|
611
615
|
- api-node-modules
|
|
612
616
|
rules:
|
|
@@ -651,6 +655,7 @@ before_script:
|
|
|
651
655
|
policy: pull-push
|
|
652
656
|
paths:
|
|
653
657
|
- api/node_modules
|
|
658
|
+
- api/.yarn/install-state.gz
|
|
654
659
|
fallback_keys:
|
|
655
660
|
- api-node-modules
|
|
656
661
|
rules:
|
|
@@ -739,6 +744,7 @@ before_script:
|
|
|
739
744
|
policy: pull-push
|
|
740
745
|
paths:
|
|
741
746
|
- api/node_modules
|
|
747
|
+
- api/.yarn/install-state.gz
|
|
742
748
|
fallback_keys:
|
|
743
749
|
- api-node-modules
|
|
744
750
|
artifacts:
|
|
@@ -1098,6 +1104,7 @@ before_script:
|
|
|
1098
1104
|
policy: pull-push
|
|
1099
1105
|
paths:
|
|
1100
1106
|
- api/node_modules
|
|
1107
|
+
- api/.yarn/install-state.gz
|
|
1101
1108
|
artifacts:
|
|
1102
1109
|
paths:
|
|
1103
1110
|
- api/__build_info.json
|
|
@@ -1437,6 +1444,7 @@ before_script:
|
|
|
1437
1444
|
policy: pull-push
|
|
1438
1445
|
paths:
|
|
1439
1446
|
- api/node_modules
|
|
1447
|
+
- api/.yarn/install-state.gz
|
|
1440
1448
|
artifacts:
|
|
1441
1449
|
paths:
|
|
1442
1450
|
- api/__build_info.json
|
|
@@ -1753,6 +1761,7 @@ before_script:
|
|
|
1753
1761
|
policy: pull-push
|
|
1754
1762
|
paths:
|
|
1755
1763
|
- api/node_modules
|
|
1764
|
+
- api/.yarn/install-state.gz
|
|
1756
1765
|
rules:
|
|
1757
1766
|
- when: never
|
|
1758
1767
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -1793,6 +1802,7 @@ before_script:
|
|
|
1793
1802
|
policy: pull-push
|
|
1794
1803
|
paths:
|
|
1795
1804
|
- api/node_modules
|
|
1805
|
+
- api/.yarn/install-state.gz
|
|
1796
1806
|
rules:
|
|
1797
1807
|
- when: never
|
|
1798
1808
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -1877,6 +1887,7 @@ before_script:
|
|
|
1877
1887
|
policy: pull-push
|
|
1878
1888
|
paths:
|
|
1879
1889
|
- api/node_modules
|
|
1890
|
+
- api/.yarn/install-state.gz
|
|
1880
1891
|
artifacts:
|
|
1881
1892
|
paths:
|
|
1882
1893
|
- api/__build_info.json
|
|
@@ -2202,6 +2213,7 @@ before_script:
|
|
|
2202
2213
|
policy: pull-push
|
|
2203
2214
|
paths:
|
|
2204
2215
|
- api/node_modules
|
|
2216
|
+
- api/.yarn/install-state.gz
|
|
2205
2217
|
fallback_keys:
|
|
2206
2218
|
- api-node-modules
|
|
2207
2219
|
rules:
|
|
@@ -2246,6 +2258,7 @@ before_script:
|
|
|
2246
2258
|
policy: pull-push
|
|
2247
2259
|
paths:
|
|
2248
2260
|
- api/node_modules
|
|
2261
|
+
- api/.yarn/install-state.gz
|
|
2249
2262
|
fallback_keys:
|
|
2250
2263
|
- api-node-modules
|
|
2251
2264
|
rules:
|
|
@@ -2334,6 +2347,7 @@ before_script:
|
|
|
2334
2347
|
policy: pull-push
|
|
2335
2348
|
paths:
|
|
2336
2349
|
- api/node_modules
|
|
2350
|
+
- api/.yarn/install-state.gz
|
|
2337
2351
|
fallback_keys:
|
|
2338
2352
|
- api-node-modules
|
|
2339
2353
|
artifacts:
|
|
@@ -2693,6 +2707,7 @@ before_script:
|
|
|
2693
2707
|
policy: pull-push
|
|
2694
2708
|
paths:
|
|
2695
2709
|
- api/node_modules
|
|
2710
|
+
- api/.yarn/install-state.gz
|
|
2696
2711
|
artifacts:
|
|
2697
2712
|
paths:
|
|
2698
2713
|
- api/__build_info.json
|
|
@@ -3032,6 +3047,7 @@ before_script:
|
|
|
3032
3047
|
policy: pull-push
|
|
3033
3048
|
paths:
|
|
3034
3049
|
- api/node_modules
|
|
3050
|
+
- api/.yarn/install-state.gz
|
|
3035
3051
|
artifacts:
|
|
3036
3052
|
paths:
|
|
3037
3053
|
- api/__build_info.json
|
|
@@ -158,6 +158,7 @@ before_script:
|
|
|
158
158
|
policy: pull-push
|
|
159
159
|
paths:
|
|
160
160
|
- api/node_modules
|
|
161
|
+
- api/.yarn/install-state.gz
|
|
161
162
|
rules:
|
|
162
163
|
- when: never
|
|
163
164
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -198,6 +199,7 @@ before_script:
|
|
|
198
199
|
policy: pull-push
|
|
199
200
|
paths:
|
|
200
201
|
- api/node_modules
|
|
202
|
+
- api/.yarn/install-state.gz
|
|
201
203
|
rules:
|
|
202
204
|
- when: never
|
|
203
205
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -288,6 +290,7 @@ before_script:
|
|
|
288
290
|
policy: pull-push
|
|
289
291
|
paths:
|
|
290
292
|
- api/node_modules
|
|
293
|
+
- api/.yarn/install-state.gz
|
|
291
294
|
artifacts:
|
|
292
295
|
paths:
|
|
293
296
|
- api/__build_info.json
|
|
@@ -683,6 +686,7 @@ before_script:
|
|
|
683
686
|
policy: pull-push
|
|
684
687
|
paths:
|
|
685
688
|
- api/node_modules
|
|
689
|
+
- api/.yarn/install-state.gz
|
|
686
690
|
fallback_keys:
|
|
687
691
|
- api-node-modules
|
|
688
692
|
rules:
|
|
@@ -727,6 +731,7 @@ before_script:
|
|
|
727
731
|
policy: pull-push
|
|
728
732
|
paths:
|
|
729
733
|
- api/node_modules
|
|
734
|
+
- api/.yarn/install-state.gz
|
|
730
735
|
fallback_keys:
|
|
731
736
|
- api-node-modules
|
|
732
737
|
rules:
|
|
@@ -821,6 +826,7 @@ before_script:
|
|
|
821
826
|
policy: pull-push
|
|
822
827
|
paths:
|
|
823
828
|
- api/node_modules
|
|
829
|
+
- api/.yarn/install-state.gz
|
|
824
830
|
fallback_keys:
|
|
825
831
|
- api-node-modules
|
|
826
832
|
artifacts:
|
|
@@ -1248,6 +1254,7 @@ before_script:
|
|
|
1248
1254
|
policy: pull-push
|
|
1249
1255
|
paths:
|
|
1250
1256
|
- api/node_modules
|
|
1257
|
+
- api/.yarn/install-state.gz
|
|
1251
1258
|
artifacts:
|
|
1252
1259
|
paths:
|
|
1253
1260
|
- api/__build_info.json
|
|
@@ -1661,6 +1668,7 @@ before_script:
|
|
|
1661
1668
|
policy: pull-push
|
|
1662
1669
|
paths:
|
|
1663
1670
|
- api/node_modules
|
|
1671
|
+
- api/.yarn/install-state.gz
|
|
1664
1672
|
artifacts:
|
|
1665
1673
|
paths:
|
|
1666
1674
|
- api/__build_info.json
|
|
@@ -158,6 +158,7 @@ before_script:
|
|
|
158
158
|
policy: pull-push
|
|
159
159
|
paths:
|
|
160
160
|
- api/node_modules
|
|
161
|
+
- api/.yarn/install-state.gz
|
|
161
162
|
rules:
|
|
162
163
|
- when: never
|
|
163
164
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -198,6 +199,7 @@ before_script:
|
|
|
198
199
|
policy: pull-push
|
|
199
200
|
paths:
|
|
200
201
|
- api/node_modules
|
|
202
|
+
- api/.yarn/install-state.gz
|
|
201
203
|
rules:
|
|
202
204
|
- when: never
|
|
203
205
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -270,6 +272,7 @@ before_script:
|
|
|
270
272
|
policy: pull-push
|
|
271
273
|
paths:
|
|
272
274
|
- api/node_modules
|
|
275
|
+
- api/.yarn/install-state.gz
|
|
273
276
|
artifacts:
|
|
274
277
|
paths:
|
|
275
278
|
- api/__build_info.json
|
|
@@ -575,6 +578,7 @@ before_script:
|
|
|
575
578
|
policy: pull-push
|
|
576
579
|
paths:
|
|
577
580
|
- api/node_modules
|
|
581
|
+
- api/.yarn/install-state.gz
|
|
578
582
|
fallback_keys:
|
|
579
583
|
- api-node-modules
|
|
580
584
|
rules:
|
|
@@ -619,6 +623,7 @@ before_script:
|
|
|
619
623
|
policy: pull-push
|
|
620
624
|
paths:
|
|
621
625
|
- api/node_modules
|
|
626
|
+
- api/.yarn/install-state.gz
|
|
622
627
|
fallback_keys:
|
|
623
628
|
- api-node-modules
|
|
624
629
|
rules:
|
|
@@ -695,6 +700,7 @@ before_script:
|
|
|
695
700
|
policy: pull-push
|
|
696
701
|
paths:
|
|
697
702
|
- api/node_modules
|
|
703
|
+
- api/.yarn/install-state.gz
|
|
698
704
|
fallback_keys:
|
|
699
705
|
- api-node-modules
|
|
700
706
|
artifacts:
|
|
@@ -1017,6 +1023,7 @@ before_script:
|
|
|
1017
1023
|
policy: pull-push
|
|
1018
1024
|
paths:
|
|
1019
1025
|
- api/node_modules
|
|
1026
|
+
- api/.yarn/install-state.gz
|
|
1020
1027
|
artifacts:
|
|
1021
1028
|
paths:
|
|
1022
1029
|
- api/__build_info.json
|
|
@@ -1324,6 +1331,7 @@ before_script:
|
|
|
1324
1331
|
policy: pull-push
|
|
1325
1332
|
paths:
|
|
1326
1333
|
- api/node_modules
|
|
1334
|
+
- api/.yarn/install-state.gz
|
|
1327
1335
|
artifacts:
|
|
1328
1336
|
paths:
|
|
1329
1337
|
- api/__build_info.json
|
|
@@ -158,6 +158,7 @@ before_script:
|
|
|
158
158
|
policy: pull-push
|
|
159
159
|
paths:
|
|
160
160
|
- www/node_modules
|
|
161
|
+
- www/.yarn/install-state.gz
|
|
161
162
|
rules:
|
|
162
163
|
- when: never
|
|
163
164
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -198,6 +199,7 @@ before_script:
|
|
|
198
199
|
policy: pull-push
|
|
199
200
|
paths:
|
|
200
201
|
- www/node_modules
|
|
202
|
+
- www/.yarn/install-state.gz
|
|
201
203
|
rules:
|
|
202
204
|
- when: never
|
|
203
205
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -262,6 +264,7 @@ before_script:
|
|
|
262
264
|
policy: pull-push
|
|
263
265
|
paths:
|
|
264
266
|
- www/node_modules
|
|
267
|
+
- www/.yarn/install-state.gz
|
|
265
268
|
artifacts:
|
|
266
269
|
paths:
|
|
267
270
|
- www/__build_info.json
|
|
@@ -479,6 +482,7 @@ before_script:
|
|
|
479
482
|
policy: pull-push
|
|
480
483
|
paths:
|
|
481
484
|
- www/node_modules
|
|
485
|
+
- www/.yarn/install-state.gz
|
|
482
486
|
fallback_keys:
|
|
483
487
|
- www-node-modules
|
|
484
488
|
rules:
|
|
@@ -523,6 +527,7 @@ before_script:
|
|
|
523
527
|
policy: pull-push
|
|
524
528
|
paths:
|
|
525
529
|
- www/node_modules
|
|
530
|
+
- www/.yarn/install-state.gz
|
|
526
531
|
fallback_keys:
|
|
527
532
|
- www-node-modules
|
|
528
533
|
rules:
|
|
@@ -591,6 +596,7 @@ before_script:
|
|
|
591
596
|
policy: pull-push
|
|
592
597
|
paths:
|
|
593
598
|
- www/node_modules
|
|
599
|
+
- www/.yarn/install-state.gz
|
|
594
600
|
fallback_keys:
|
|
595
601
|
- www-node-modules
|
|
596
602
|
artifacts:
|
|
@@ -844,6 +850,7 @@ before_script:
|
|
|
844
850
|
policy: pull-push
|
|
845
851
|
paths:
|
|
846
852
|
- www/node_modules
|
|
853
|
+
- www/.yarn/install-state.gz
|
|
847
854
|
artifacts:
|
|
848
855
|
paths:
|
|
849
856
|
- www/__build_info.json
|
|
@@ -1056,6 +1063,7 @@ before_script:
|
|
|
1056
1063
|
policy: pull-push
|
|
1057
1064
|
paths:
|
|
1058
1065
|
- www/node_modules
|
|
1066
|
+
- www/.yarn/install-state.gz
|
|
1059
1067
|
artifacts:
|
|
1060
1068
|
paths:
|
|
1061
1069
|
- www/__build_info.json
|
|
@@ -158,6 +158,7 @@ before_script:
|
|
|
158
158
|
policy: pull-push
|
|
159
159
|
paths:
|
|
160
160
|
- www/node_modules
|
|
161
|
+
- www/.yarn/install-state.gz
|
|
161
162
|
rules:
|
|
162
163
|
- when: never
|
|
163
164
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -198,6 +199,7 @@ before_script:
|
|
|
198
199
|
policy: pull-push
|
|
199
200
|
paths:
|
|
200
201
|
- www/node_modules
|
|
202
|
+
- www/.yarn/install-state.gz
|
|
201
203
|
rules:
|
|
202
204
|
- when: never
|
|
203
205
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -270,6 +272,7 @@ before_script:
|
|
|
270
272
|
policy: pull-push
|
|
271
273
|
paths:
|
|
272
274
|
- www/node_modules
|
|
275
|
+
- www/.yarn/install-state.gz
|
|
273
276
|
artifacts:
|
|
274
277
|
paths:
|
|
275
278
|
- www/__build_info.json
|
|
@@ -582,6 +585,7 @@ before_script:
|
|
|
582
585
|
policy: pull-push
|
|
583
586
|
paths:
|
|
584
587
|
- www/node_modules
|
|
588
|
+
- www/.yarn/install-state.gz
|
|
585
589
|
fallback_keys:
|
|
586
590
|
- www-node-modules
|
|
587
591
|
rules:
|
|
@@ -626,6 +630,7 @@ before_script:
|
|
|
626
630
|
policy: pull-push
|
|
627
631
|
paths:
|
|
628
632
|
- www/node_modules
|
|
633
|
+
- www/.yarn/install-state.gz
|
|
629
634
|
fallback_keys:
|
|
630
635
|
- www-node-modules
|
|
631
636
|
rules:
|
|
@@ -702,6 +707,7 @@ before_script:
|
|
|
702
707
|
policy: pull-push
|
|
703
708
|
paths:
|
|
704
709
|
- www/node_modules
|
|
710
|
+
- www/.yarn/install-state.gz
|
|
705
711
|
fallback_keys:
|
|
706
712
|
- www-node-modules
|
|
707
713
|
artifacts:
|
|
@@ -1033,6 +1039,7 @@ before_script:
|
|
|
1033
1039
|
policy: pull-push
|
|
1034
1040
|
paths:
|
|
1035
1041
|
- www/node_modules
|
|
1042
|
+
- www/.yarn/install-state.gz
|
|
1036
1043
|
artifacts:
|
|
1037
1044
|
paths:
|
|
1038
1045
|
- www/__build_info.json
|
|
@@ -1347,6 +1354,7 @@ before_script:
|
|
|
1347
1354
|
policy: pull-push
|
|
1348
1355
|
paths:
|
|
1349
1356
|
- www/node_modules
|
|
1357
|
+
- www/.yarn/install-state.gz
|
|
1350
1358
|
artifacts:
|
|
1351
1359
|
paths:
|
|
1352
1360
|
- www/__build_info.json
|
|
@@ -174,6 +174,7 @@ before_script:
|
|
|
174
174
|
policy: pull-push
|
|
175
175
|
paths:
|
|
176
176
|
- api/node_modules
|
|
177
|
+
- api/.yarn/install-state.gz
|
|
177
178
|
rules:
|
|
178
179
|
- when: never
|
|
179
180
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -214,6 +215,7 @@ before_script:
|
|
|
214
215
|
policy: pull-push
|
|
215
216
|
paths:
|
|
216
217
|
- api/node_modules
|
|
218
|
+
- api/.yarn/install-state.gz
|
|
217
219
|
rules:
|
|
218
220
|
- when: never
|
|
219
221
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -278,6 +280,7 @@ before_script:
|
|
|
278
280
|
policy: pull-push
|
|
279
281
|
paths:
|
|
280
282
|
- api/node_modules
|
|
283
|
+
- api/.yarn/install-state.gz
|
|
281
284
|
artifacts:
|
|
282
285
|
paths:
|
|
283
286
|
- api/__build_info.json
|
|
@@ -372,6 +375,7 @@ before_script:
|
|
|
372
375
|
policy: pull-push
|
|
373
376
|
paths:
|
|
374
377
|
- api/node_modules
|
|
378
|
+
- api/.yarn/install-state.gz
|
|
375
379
|
rules:
|
|
376
380
|
- when: never
|
|
377
381
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -412,6 +416,7 @@ before_script:
|
|
|
412
416
|
policy: pull-push
|
|
413
417
|
paths:
|
|
414
418
|
- api/node_modules
|
|
419
|
+
- api/.yarn/install-state.gz
|
|
415
420
|
rules:
|
|
416
421
|
- when: never
|
|
417
422
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -476,6 +481,7 @@ before_script:
|
|
|
476
481
|
policy: pull-push
|
|
477
482
|
paths:
|
|
478
483
|
- api/node_modules
|
|
484
|
+
- api/.yarn/install-state.gz
|
|
479
485
|
artifacts:
|
|
480
486
|
paths:
|
|
481
487
|
- api/__build_info.json
|
|
@@ -570,6 +576,7 @@ before_script:
|
|
|
570
576
|
policy: pull-push
|
|
571
577
|
paths:
|
|
572
578
|
- api/node_modules
|
|
579
|
+
- api/.yarn/install-state.gz
|
|
573
580
|
rules:
|
|
574
581
|
- when: never
|
|
575
582
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -610,6 +617,7 @@ before_script:
|
|
|
610
617
|
policy: pull-push
|
|
611
618
|
paths:
|
|
612
619
|
- api/node_modules
|
|
620
|
+
- api/.yarn/install-state.gz
|
|
613
621
|
rules:
|
|
614
622
|
- when: never
|
|
615
623
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -674,6 +682,7 @@ before_script:
|
|
|
674
682
|
policy: pull-push
|
|
675
683
|
paths:
|
|
676
684
|
- api/node_modules
|
|
685
|
+
- api/.yarn/install-state.gz
|
|
677
686
|
artifacts:
|
|
678
687
|
paths:
|
|
679
688
|
- api/__build_info.json
|
|
@@ -770,6 +779,7 @@ before_script:
|
|
|
770
779
|
policy: pull-push
|
|
771
780
|
paths:
|
|
772
781
|
- api/node_modules
|
|
782
|
+
- api/.yarn/install-state.gz
|
|
773
783
|
fallback_keys:
|
|
774
784
|
- api-node-modules
|
|
775
785
|
rules:
|
|
@@ -814,6 +824,7 @@ before_script:
|
|
|
814
824
|
policy: pull-push
|
|
815
825
|
paths:
|
|
816
826
|
- api/node_modules
|
|
827
|
+
- api/.yarn/install-state.gz
|
|
817
828
|
fallback_keys:
|
|
818
829
|
- api-node-modules
|
|
819
830
|
rules:
|
|
@@ -882,6 +893,7 @@ before_script:
|
|
|
882
893
|
policy: pull-push
|
|
883
894
|
paths:
|
|
884
895
|
- api/node_modules
|
|
896
|
+
- api/.yarn/install-state.gz
|
|
885
897
|
fallback_keys:
|
|
886
898
|
- api-node-modules
|
|
887
899
|
artifacts:
|
|
@@ -981,6 +993,7 @@ before_script:
|
|
|
981
993
|
policy: pull-push
|
|
982
994
|
paths:
|
|
983
995
|
- api/node_modules
|
|
996
|
+
- api/.yarn/install-state.gz
|
|
984
997
|
artifacts:
|
|
985
998
|
paths:
|
|
986
999
|
- api/__build_info.json
|
|
@@ -1078,6 +1091,7 @@ before_script:
|
|
|
1078
1091
|
policy: pull-push
|
|
1079
1092
|
paths:
|
|
1080
1093
|
- api/node_modules
|
|
1094
|
+
- api/.yarn/install-state.gz
|
|
1081
1095
|
artifacts:
|
|
1082
1096
|
paths:
|
|
1083
1097
|
- api/__build_info.json
|