@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
|
- app/node_modules
|
|
161
|
+
- app/.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
|
- app/node_modules
|
|
202
|
+
- app/.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
|
- app/node_modules
|
|
275
|
+
- app/.yarn/install-state.gz
|
|
273
276
|
artifacts:
|
|
274
277
|
paths:
|
|
275
278
|
- app/__build_info.json
|
|
@@ -577,6 +580,7 @@ before_script:
|
|
|
577
580
|
policy: pull-push
|
|
578
581
|
paths:
|
|
579
582
|
- app/node_modules
|
|
583
|
+
- app/.yarn/install-state.gz
|
|
580
584
|
fallback_keys:
|
|
581
585
|
- app-node-modules
|
|
582
586
|
rules:
|
|
@@ -621,6 +625,7 @@ before_script:
|
|
|
621
625
|
policy: pull-push
|
|
622
626
|
paths:
|
|
623
627
|
- app/node_modules
|
|
628
|
+
- app/.yarn/install-state.gz
|
|
624
629
|
fallback_keys:
|
|
625
630
|
- app-node-modules
|
|
626
631
|
rules:
|
|
@@ -697,6 +702,7 @@ before_script:
|
|
|
697
702
|
policy: pull-push
|
|
698
703
|
paths:
|
|
699
704
|
- app/node_modules
|
|
705
|
+
- app/.yarn/install-state.gz
|
|
700
706
|
fallback_keys:
|
|
701
707
|
- app-node-modules
|
|
702
708
|
artifacts:
|
|
@@ -1023,6 +1029,7 @@ before_script:
|
|
|
1023
1029
|
policy: pull-push
|
|
1024
1030
|
paths:
|
|
1025
1031
|
- app/node_modules
|
|
1032
|
+
- app/.yarn/install-state.gz
|
|
1026
1033
|
artifacts:
|
|
1027
1034
|
paths:
|
|
1028
1035
|
- app/__build_info.json
|
|
@@ -1332,6 +1339,7 @@ before_script:
|
|
|
1332
1339
|
policy: pull-push
|
|
1333
1340
|
paths:
|
|
1334
1341
|
- app/node_modules
|
|
1342
|
+
- app/.yarn/install-state.gz
|
|
1335
1343
|
artifacts:
|
|
1336
1344
|
paths:
|
|
1337
1345
|
- app/__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
|
|
@@ -573,6 +576,7 @@ before_script:
|
|
|
573
576
|
policy: pull-push
|
|
574
577
|
paths:
|
|
575
578
|
- www/node_modules
|
|
579
|
+
- www/.yarn/install-state.gz
|
|
576
580
|
fallback_keys:
|
|
577
581
|
- www-node-modules
|
|
578
582
|
rules:
|
|
@@ -617,6 +621,7 @@ before_script:
|
|
|
617
621
|
policy: pull-push
|
|
618
622
|
paths:
|
|
619
623
|
- www/node_modules
|
|
624
|
+
- www/.yarn/install-state.gz
|
|
620
625
|
fallback_keys:
|
|
621
626
|
- www-node-modules
|
|
622
627
|
rules:
|
|
@@ -693,6 +698,7 @@ before_script:
|
|
|
693
698
|
policy: pull-push
|
|
694
699
|
paths:
|
|
695
700
|
- www/node_modules
|
|
701
|
+
- www/.yarn/install-state.gz
|
|
696
702
|
fallback_keys:
|
|
697
703
|
- www-node-modules
|
|
698
704
|
artifacts:
|
|
@@ -1015,6 +1021,7 @@ before_script:
|
|
|
1015
1021
|
policy: pull-push
|
|
1016
1022
|
paths:
|
|
1017
1023
|
- www/node_modules
|
|
1024
|
+
- www/.yarn/install-state.gz
|
|
1018
1025
|
artifacts:
|
|
1019
1026
|
paths:
|
|
1020
1027
|
- www/__build_info.json
|
|
@@ -1320,6 +1327,7 @@ before_script:
|
|
|
1320
1327
|
policy: pull-push
|
|
1321
1328
|
paths:
|
|
1322
1329
|
- www/node_modules
|
|
1330
|
+
- www/.yarn/install-state.gz
|
|
1323
1331
|
artifacts:
|
|
1324
1332
|
paths:
|
|
1325
1333
|
- 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
|
|
@@ -573,6 +576,7 @@ before_script:
|
|
|
573
576
|
policy: pull-push
|
|
574
577
|
paths:
|
|
575
578
|
- www/node_modules
|
|
579
|
+
- www/.yarn/install-state.gz
|
|
576
580
|
fallback_keys:
|
|
577
581
|
- www-node-modules
|
|
578
582
|
rules:
|
|
@@ -617,6 +621,7 @@ before_script:
|
|
|
617
621
|
policy: pull-push
|
|
618
622
|
paths:
|
|
619
623
|
- www/node_modules
|
|
624
|
+
- www/.yarn/install-state.gz
|
|
620
625
|
fallback_keys:
|
|
621
626
|
- www-node-modules
|
|
622
627
|
rules:
|
|
@@ -693,6 +698,7 @@ before_script:
|
|
|
693
698
|
policy: pull-push
|
|
694
699
|
paths:
|
|
695
700
|
- www/node_modules
|
|
701
|
+
- www/.yarn/install-state.gz
|
|
696
702
|
fallback_keys:
|
|
697
703
|
- www-node-modules
|
|
698
704
|
artifacts:
|
|
@@ -1015,6 +1021,7 @@ before_script:
|
|
|
1015
1021
|
policy: pull-push
|
|
1016
1022
|
paths:
|
|
1017
1023
|
- www/node_modules
|
|
1024
|
+
- www/.yarn/install-state.gz
|
|
1018
1025
|
artifacts:
|
|
1019
1026
|
paths:
|
|
1020
1027
|
- www/__build_info.json
|
|
@@ -1320,6 +1327,7 @@ before_script:
|
|
|
1320
1327
|
policy: pull-push
|
|
1321
1328
|
paths:
|
|
1322
1329
|
- www/node_modules
|
|
1330
|
+
- www/.yarn/install-state.gz
|
|
1323
1331
|
artifacts:
|
|
1324
1332
|
paths:
|
|
1325
1333
|
- 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
|
|
@@ -573,6 +576,7 @@ before_script:
|
|
|
573
576
|
policy: pull-push
|
|
574
577
|
paths:
|
|
575
578
|
- www/node_modules
|
|
579
|
+
- www/.yarn/install-state.gz
|
|
576
580
|
fallback_keys:
|
|
577
581
|
- www-node-modules
|
|
578
582
|
rules:
|
|
@@ -617,6 +621,7 @@ before_script:
|
|
|
617
621
|
policy: pull-push
|
|
618
622
|
paths:
|
|
619
623
|
- www/node_modules
|
|
624
|
+
- www/.yarn/install-state.gz
|
|
620
625
|
fallback_keys:
|
|
621
626
|
- www-node-modules
|
|
622
627
|
rules:
|
|
@@ -693,6 +698,7 @@ before_script:
|
|
|
693
698
|
policy: pull-push
|
|
694
699
|
paths:
|
|
695
700
|
- www/node_modules
|
|
701
|
+
- www/.yarn/install-state.gz
|
|
696
702
|
fallback_keys:
|
|
697
703
|
- www-node-modules
|
|
698
704
|
artifacts:
|
|
@@ -1015,6 +1021,7 @@ before_script:
|
|
|
1015
1021
|
policy: pull-push
|
|
1016
1022
|
paths:
|
|
1017
1023
|
- www/node_modules
|
|
1024
|
+
- www/.yarn/install-state.gz
|
|
1018
1025
|
artifacts:
|
|
1019
1026
|
paths:
|
|
1020
1027
|
- www/__build_info.json
|
|
@@ -1320,6 +1327,7 @@ before_script:
|
|
|
1320
1327
|
policy: pull-push
|
|
1321
1328
|
paths:
|
|
1322
1329
|
- www/node_modules
|
|
1330
|
+
- www/.yarn/install-state.gz
|
|
1323
1331
|
artifacts:
|
|
1324
1332
|
paths:
|
|
1325
1333
|
- www/__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
|
|
@@ -573,6 +576,7 @@ before_script:
|
|
|
573
576
|
policy: pull-push
|
|
574
577
|
paths:
|
|
575
578
|
- api/node_modules
|
|
579
|
+
- api/.yarn/install-state.gz
|
|
576
580
|
fallback_keys:
|
|
577
581
|
- api-node-modules
|
|
578
582
|
rules:
|
|
@@ -617,6 +621,7 @@ before_script:
|
|
|
617
621
|
policy: pull-push
|
|
618
622
|
paths:
|
|
619
623
|
- api/node_modules
|
|
624
|
+
- api/.yarn/install-state.gz
|
|
620
625
|
fallback_keys:
|
|
621
626
|
- api-node-modules
|
|
622
627
|
rules:
|
|
@@ -693,6 +698,7 @@ before_script:
|
|
|
693
698
|
policy: pull-push
|
|
694
699
|
paths:
|
|
695
700
|
- api/node_modules
|
|
701
|
+
- api/.yarn/install-state.gz
|
|
696
702
|
fallback_keys:
|
|
697
703
|
- api-node-modules
|
|
698
704
|
artifacts:
|
|
@@ -1015,6 +1021,7 @@ before_script:
|
|
|
1015
1021
|
policy: pull-push
|
|
1016
1022
|
paths:
|
|
1017
1023
|
- api/node_modules
|
|
1024
|
+
- api/.yarn/install-state.gz
|
|
1018
1025
|
artifacts:
|
|
1019
1026
|
paths:
|
|
1020
1027
|
- api/__build_info.json
|
|
@@ -1320,6 +1327,7 @@ before_script:
|
|
|
1320
1327
|
policy: pull-push
|
|
1321
1328
|
paths:
|
|
1322
1329
|
- api/node_modules
|
|
1330
|
+
- api/.yarn/install-state.gz
|
|
1323
1331
|
artifacts:
|
|
1324
1332
|
paths:
|
|
1325
1333
|
- 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
|
|
@@ -573,6 +576,7 @@ before_script:
|
|
|
573
576
|
policy: pull-push
|
|
574
577
|
paths:
|
|
575
578
|
- api/node_modules
|
|
579
|
+
- api/.yarn/install-state.gz
|
|
576
580
|
fallback_keys:
|
|
577
581
|
- api-node-modules
|
|
578
582
|
rules:
|
|
@@ -617,6 +621,7 @@ before_script:
|
|
|
617
621
|
policy: pull-push
|
|
618
622
|
paths:
|
|
619
623
|
- api/node_modules
|
|
624
|
+
- api/.yarn/install-state.gz
|
|
620
625
|
fallback_keys:
|
|
621
626
|
- api-node-modules
|
|
622
627
|
rules:
|
|
@@ -693,6 +698,7 @@ before_script:
|
|
|
693
698
|
policy: pull-push
|
|
694
699
|
paths:
|
|
695
700
|
- api/node_modules
|
|
701
|
+
- api/.yarn/install-state.gz
|
|
696
702
|
fallback_keys:
|
|
697
703
|
- api-node-modules
|
|
698
704
|
artifacts:
|
|
@@ -1015,6 +1021,7 @@ before_script:
|
|
|
1015
1021
|
policy: pull-push
|
|
1016
1022
|
paths:
|
|
1017
1023
|
- api/node_modules
|
|
1024
|
+
- api/.yarn/install-state.gz
|
|
1018
1025
|
artifacts:
|
|
1019
1026
|
paths:
|
|
1020
1027
|
- api/__build_info.json
|
|
@@ -1320,6 +1327,7 @@ before_script:
|
|
|
1320
1327
|
policy: pull-push
|
|
1321
1328
|
paths:
|
|
1322
1329
|
- api/node_modules
|
|
1330
|
+
- api/.yarn/install-state.gz
|
|
1323
1331
|
artifacts:
|
|
1324
1332
|
paths:
|
|
1325
1333
|
- api/__build_info.json
|
|
@@ -158,6 +158,7 @@ before_script:
|
|
|
158
158
|
policy: pull-push
|
|
159
159
|
paths:
|
|
160
160
|
- web/node_modules
|
|
161
|
+
- web/.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
|
- web/node_modules
|
|
202
|
+
- web/.yarn/install-state.gz
|
|
201
203
|
rules:
|
|
202
204
|
- when: never
|
|
203
205
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -275,6 +277,7 @@ before_script:
|
|
|
275
277
|
policy: pull-push
|
|
276
278
|
paths:
|
|
277
279
|
- web/node_modules
|
|
280
|
+
- web/.yarn/install-state.gz
|
|
278
281
|
- key: web-meteor-build-cache
|
|
279
282
|
policy: pull-push
|
|
280
283
|
paths:
|
|
@@ -570,6 +573,7 @@ before_script:
|
|
|
570
573
|
policy: pull-push
|
|
571
574
|
paths:
|
|
572
575
|
- web/node_modules
|
|
576
|
+
- web/.yarn/install-state.gz
|
|
573
577
|
fallback_keys:
|
|
574
578
|
- web-node-modules
|
|
575
579
|
rules:
|
|
@@ -614,6 +618,7 @@ before_script:
|
|
|
614
618
|
policy: pull-push
|
|
615
619
|
paths:
|
|
616
620
|
- web/node_modules
|
|
621
|
+
- web/.yarn/install-state.gz
|
|
617
622
|
fallback_keys:
|
|
618
623
|
- web-node-modules
|
|
619
624
|
rules:
|
|
@@ -695,6 +700,7 @@ before_script:
|
|
|
695
700
|
policy: pull-push
|
|
696
701
|
paths:
|
|
697
702
|
- web/node_modules
|
|
703
|
+
- web/.yarn/install-state.gz
|
|
698
704
|
fallback_keys:
|
|
699
705
|
- web-node-modules
|
|
700
706
|
- key: web-meteor-build-cache-mr$CI_MERGE_REQUEST_IID
|
|
@@ -1014,6 +1020,7 @@ before_script:
|
|
|
1014
1020
|
policy: pull-push
|
|
1015
1021
|
paths:
|
|
1016
1022
|
- web/node_modules
|
|
1023
|
+
- web/.yarn/install-state.gz
|
|
1017
1024
|
- key: web-meteor-build-cache
|
|
1018
1025
|
policy: pull-push
|
|
1019
1026
|
paths:
|
|
@@ -1316,6 +1323,7 @@ before_script:
|
|
|
1316
1323
|
policy: pull-push
|
|
1317
1324
|
paths:
|
|
1318
1325
|
- web/node_modules
|
|
1326
|
+
- web/.yarn/install-state.gz
|
|
1319
1327
|
- key: web-meteor-build-cache
|
|
1320
1328
|
policy: pull-push
|
|
1321
1329
|
paths:
|
|
@@ -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
|
- key: www-default
|
|
274
277
|
policy: pull-push
|
|
275
278
|
paths:
|
|
@@ -577,6 +580,7 @@ before_script:
|
|
|
577
580
|
policy: pull-push
|
|
578
581
|
paths:
|
|
579
582
|
- www/node_modules
|
|
583
|
+
- www/.yarn/install-state.gz
|
|
580
584
|
fallback_keys:
|
|
581
585
|
- www-node-modules
|
|
582
586
|
rules:
|
|
@@ -621,6 +625,7 @@ before_script:
|
|
|
621
625
|
policy: pull-push
|
|
622
626
|
paths:
|
|
623
627
|
- www/node_modules
|
|
628
|
+
- www/.yarn/install-state.gz
|
|
624
629
|
fallback_keys:
|
|
625
630
|
- www-node-modules
|
|
626
631
|
rules:
|
|
@@ -697,6 +702,7 @@ before_script:
|
|
|
697
702
|
policy: pull-push
|
|
698
703
|
paths:
|
|
699
704
|
- www/node_modules
|
|
705
|
+
- www/.yarn/install-state.gz
|
|
700
706
|
fallback_keys:
|
|
701
707
|
- www-node-modules
|
|
702
708
|
- key: www-default-mr$CI_MERGE_REQUEST_IID
|
|
@@ -1025,6 +1031,7 @@ before_script:
|
|
|
1025
1031
|
policy: pull-push
|
|
1026
1032
|
paths:
|
|
1027
1033
|
- www/node_modules
|
|
1034
|
+
- www/.yarn/install-state.gz
|
|
1028
1035
|
- key: www-default
|
|
1029
1036
|
policy: pull-push
|
|
1030
1037
|
paths:
|
|
@@ -1334,6 +1341,7 @@ before_script:
|
|
|
1334
1341
|
policy: pull-push
|
|
1335
1342
|
paths:
|
|
1336
1343
|
- www/node_modules
|
|
1344
|
+
- www/.yarn/install-state.gz
|
|
1337
1345
|
- key: www-default
|
|
1338
1346
|
policy: pull-push
|
|
1339
1347
|
paths:
|
|
@@ -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
|
|
@@ -573,6 +576,7 @@ before_script:
|
|
|
573
576
|
policy: pull-push
|
|
574
577
|
paths:
|
|
575
578
|
- api/node_modules
|
|
579
|
+
- api/.yarn/install-state.gz
|
|
576
580
|
fallback_keys:
|
|
577
581
|
- api-node-modules
|
|
578
582
|
rules:
|
|
@@ -617,6 +621,7 @@ before_script:
|
|
|
617
621
|
policy: pull-push
|
|
618
622
|
paths:
|
|
619
623
|
- api/node_modules
|
|
624
|
+
- api/.yarn/install-state.gz
|
|
620
625
|
fallback_keys:
|
|
621
626
|
- api-node-modules
|
|
622
627
|
rules:
|
|
@@ -693,6 +698,7 @@ before_script:
|
|
|
693
698
|
policy: pull-push
|
|
694
699
|
paths:
|
|
695
700
|
- api/node_modules
|
|
701
|
+
- api/.yarn/install-state.gz
|
|
696
702
|
fallback_keys:
|
|
697
703
|
- api-node-modules
|
|
698
704
|
artifacts:
|
|
@@ -1015,6 +1021,7 @@ before_script:
|
|
|
1015
1021
|
policy: pull-push
|
|
1016
1022
|
paths:
|
|
1017
1023
|
- api/node_modules
|
|
1024
|
+
- api/.yarn/install-state.gz
|
|
1018
1025
|
artifacts:
|
|
1019
1026
|
paths:
|
|
1020
1027
|
- api/__build_info.json
|
|
@@ -1320,6 +1327,7 @@ before_script:
|
|
|
1320
1327
|
policy: pull-push
|
|
1321
1328
|
paths:
|
|
1322
1329
|
- api/node_modules
|
|
1330
|
+
- api/.yarn/install-state.gz
|
|
1323
1331
|
artifacts:
|
|
1324
1332
|
paths:
|
|
1325
1333
|
- api/__build_info.json
|
|
@@ -158,6 +158,7 @@ before_script:
|
|
|
158
158
|
policy: pull-push
|
|
159
159
|
paths:
|
|
160
160
|
- app/node_modules
|
|
161
|
+
- app/.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
|
- app/node_modules
|
|
202
|
+
- app/.yarn/install-state.gz
|
|
201
203
|
rules:
|
|
202
204
|
- when: never
|
|
203
205
|
if: $CI_PIPELINE_SOURCE == "trigger"
|
|
@@ -272,6 +274,7 @@ before_script:
|
|
|
272
274
|
policy: pull-push
|
|
273
275
|
paths:
|
|
274
276
|
- app/node_modules
|
|
277
|
+
- app/.yarn/install-state.gz
|
|
275
278
|
artifacts:
|
|
276
279
|
paths:
|
|
277
280
|
- app/__build_info.json
|
|
@@ -600,6 +603,7 @@ before_script:
|
|
|
600
603
|
policy: pull-push
|
|
601
604
|
paths:
|
|
602
605
|
- app/node_modules
|
|
606
|
+
- app/.yarn/install-state.gz
|
|
603
607
|
fallback_keys:
|
|
604
608
|
- app-node-modules
|
|
605
609
|
rules:
|
|
@@ -644,6 +648,7 @@ before_script:
|
|
|
644
648
|
policy: pull-push
|
|
645
649
|
paths:
|
|
646
650
|
- app/node_modules
|
|
651
|
+
- app/.yarn/install-state.gz
|
|
647
652
|
fallback_keys:
|
|
648
653
|
- app-node-modules
|
|
649
654
|
rules:
|
|
@@ -722,6 +727,7 @@ before_script:
|
|
|
722
727
|
policy: pull-push
|
|
723
728
|
paths:
|
|
724
729
|
- app/node_modules
|
|
730
|
+
- app/.yarn/install-state.gz
|
|
725
731
|
fallback_keys:
|
|
726
732
|
- app-node-modules
|
|
727
733
|
artifacts:
|
|
@@ -1071,6 +1077,7 @@ before_script:
|
|
|
1071
1077
|
policy: pull-push
|
|
1072
1078
|
paths:
|
|
1073
1079
|
- app/node_modules
|
|
1080
|
+
- app/.yarn/install-state.gz
|
|
1074
1081
|
artifacts:
|
|
1075
1082
|
paths:
|
|
1076
1083
|
- app/__build_info.json
|
|
@@ -1403,6 +1410,7 @@ before_script:
|
|
|
1403
1410
|
policy: pull-push
|
|
1404
1411
|
paths:
|
|
1405
1412
|
- app/node_modules
|
|
1413
|
+
- app/.yarn/install-state.gz
|
|
1406
1414
|
artifacts:
|
|
1407
1415
|
paths:
|
|
1408
1416
|
- app/__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
|
|
@@ -573,6 +576,7 @@ before_script:
|
|
|
573
576
|
policy: pull-push
|
|
574
577
|
paths:
|
|
575
578
|
- api/node_modules
|
|
579
|
+
- api/.yarn/install-state.gz
|
|
576
580
|
fallback_keys:
|
|
577
581
|
- api-node-modules
|
|
578
582
|
rules:
|
|
@@ -617,6 +621,7 @@ before_script:
|
|
|
617
621
|
policy: pull-push
|
|
618
622
|
paths:
|
|
619
623
|
- api/node_modules
|
|
624
|
+
- api/.yarn/install-state.gz
|
|
620
625
|
fallback_keys:
|
|
621
626
|
- api-node-modules
|
|
622
627
|
rules:
|
|
@@ -693,6 +698,7 @@ before_script:
|
|
|
693
698
|
policy: pull-push
|
|
694
699
|
paths:
|
|
695
700
|
- api/node_modules
|
|
701
|
+
- api/.yarn/install-state.gz
|
|
696
702
|
fallback_keys:
|
|
697
703
|
- api-node-modules
|
|
698
704
|
artifacts:
|
|
@@ -1015,6 +1021,7 @@ before_script:
|
|
|
1015
1021
|
policy: pull-push
|
|
1016
1022
|
paths:
|
|
1017
1023
|
- api/node_modules
|
|
1024
|
+
- api/.yarn/install-state.gz
|
|
1018
1025
|
artifacts:
|
|
1019
1026
|
paths:
|
|
1020
1027
|
- api/__build_info.json
|
|
@@ -1320,6 +1327,7 @@ before_script:
|
|
|
1320
1327
|
policy: pull-push
|
|
1321
1328
|
paths:
|
|
1322
1329
|
- api/node_modules
|
|
1330
|
+
- api/.yarn/install-state.gz
|
|
1323
1331
|
artifacts:
|
|
1324
1332
|
paths:
|
|
1325
1333
|
- api/__build_info.json
|