@catladder/pipeline 3.26.0 → 3.27.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.
Files changed (54) hide show
  1. package/dist/build/node/yarn.js +3 -2
  2. package/dist/constants.js +1 -1
  3. package/dist/deploy/types/googleCloudRun.d.ts +1 -1
  4. package/dist/tsconfig.tsbuildinfo +1 -1
  5. package/examples/__snapshots__/automatic-releases.test.ts.snap +16 -12
  6. package/examples/__snapshots__/cloud-run-health-check-defaults.test.ts.snap +16 -12
  7. package/examples/__snapshots__/cloud-run-health-check-only-startup.test.ts.snap +16 -12
  8. package/examples/__snapshots__/cloud-run-health-check.test.ts.snap +16 -12
  9. package/examples/__snapshots__/cloud-run-http2.test.ts.snap +16 -12
  10. package/examples/__snapshots__/cloud-run-memory-limit.test.ts.snap +16 -12
  11. package/examples/__snapshots__/cloud-run-meteor-with-worker.test.ts.snap +8 -8
  12. package/examples/__snapshots__/cloud-run-nextjs.test.ts.snap +16 -12
  13. package/examples/__snapshots__/cloud-run-no-cpu-throttling.test.ts.snap +16 -12
  14. package/examples/__snapshots__/cloud-run-no-service.test.ts.snap +16 -12
  15. package/examples/__snapshots__/cloud-run-non-public.test.ts.snap +16 -12
  16. package/examples/__snapshots__/cloud-run-post-stop-job.test.ts.snap +16 -12
  17. package/examples/__snapshots__/cloud-run-service-custom-vpc-connector.test.ts.snap +16 -12
  18. package/examples/__snapshots__/cloud-run-service-custom-vpc.test.ts.snap +16 -12
  19. package/examples/__snapshots__/cloud-run-service-gen2.test.ts.snap +16 -12
  20. package/examples/__snapshots__/cloud-run-service-increase-timout.test.ts.snap +16 -12
  21. package/examples/__snapshots__/cloud-run-service-with-volumes.test.ts.snap +16 -12
  22. package/examples/__snapshots__/cloud-run-storybook.test.ts.snap +12 -8
  23. package/examples/__snapshots__/cloud-run-with-agents.test.ts.snap +16 -12
  24. package/examples/__snapshots__/cloud-run-with-gpu.test.ts.snap +16 -12
  25. package/examples/__snapshots__/cloud-run-with-ngnix.test.ts.snap +16 -12
  26. package/examples/__snapshots__/cloud-run-with-sql-legacy-jobs.test.ts.snap +16 -12
  27. package/examples/__snapshots__/cloud-run-with-sql-multiple-dbs.test.ts.snap +48 -36
  28. package/examples/__snapshots__/cloud-run-with-sql-reuse-db.test.ts.snap +32 -24
  29. package/examples/__snapshots__/cloud-run-with-sql.test.ts.snap +16 -12
  30. package/examples/__snapshots__/cloud-run-with-worker.test.ts.snap +16 -12
  31. package/examples/__snapshots__/custom-deploy.test.ts.snap +16 -12
  32. package/examples/__snapshots__/custom-envs.test.ts.snap +14 -14
  33. package/examples/__snapshots__/custom-verify-job.test.ts.snap +16 -12
  34. package/examples/__snapshots__/git-submodule.test.ts.snap +16 -12
  35. package/examples/__snapshots__/kubernetes-application-customization.test.ts.snap +16 -12
  36. package/examples/__snapshots__/kubernetes-with-cloud-sql.test.ts.snap +16 -12
  37. package/examples/__snapshots__/kubernetes-with-jobs.test.ts.snap +32 -24
  38. package/examples/__snapshots__/kubernetes-with-mongodb.test.ts.snap +16 -12
  39. package/examples/__snapshots__/local-dot-env.test.ts.snap +16 -12
  40. package/examples/__snapshots__/meteor-kubernetes.test.ts.snap +8 -8
  41. package/examples/__snapshots__/modify-generated-files.test.ts.snap +8 -8
  42. package/examples/__snapshots__/modify-generated-yaml.test.ts.snap +8 -8
  43. package/examples/__snapshots__/multiline-var.test.ts.snap +48 -36
  44. package/examples/__snapshots__/native-app.test.ts.snap +24 -20
  45. package/examples/__snapshots__/node-build-with-custom-image.test.ts.snap +16 -12
  46. package/examples/__snapshots__/node-build-with-docker-additions.test.ts.snap +16 -12
  47. package/examples/__snapshots__/override-secrets.test.ts.snap +16 -12
  48. package/examples/__snapshots__/referencing-other-vars.test.ts.snap +48 -36
  49. package/examples/__snapshots__/wait-for-other-deploy.test.ts.snap +16 -16
  50. package/examples/__snapshots__/workspace-api-www-turbo-cache.test.ts.snap +24 -16
  51. package/examples/__snapshots__/workspace-api-www.test.ts.snap +24 -16
  52. package/package.json +1 -1
  53. package/src/build/node/yarn.ts +3 -2
  54. package/src/deploy/types/googleCloudRun.ts +1 -1
@@ -149,7 +149,7 @@ before_script:
149
149
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
150
150
  - collapseable_section_end "nodeinstall"
151
151
  - collapseable_section_start "yarninstall" "Yarn install"
152
- - yarn install --immutable
152
+ - yarn install --immutable --inline-builds
153
153
  - collapseable_section_end "yarninstall"
154
154
  - yarn lint
155
155
  cache:
@@ -189,7 +189,7 @@ before_script:
189
189
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
190
190
  - collapseable_section_end "nodeinstall"
191
191
  - collapseable_section_start "yarninstall" "Yarn install"
192
- - yarn install --immutable
192
+ - yarn install --immutable --inline-builds
193
193
  - collapseable_section_end "yarninstall"
194
194
  - yarn test
195
195
  cache:
@@ -245,7 +245,7 @@ before_script:
245
245
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
246
246
  - collapseable_section_end "nodeinstall"
247
247
  - collapseable_section_start "yarninstall" "Yarn install"
248
- - yarn install --immutable
248
+ - yarn install --immutable --inline-builds
249
249
  - collapseable_section_end "yarninstall"
250
250
  - yarn build
251
251
  cache:
@@ -300,7 +300,8 @@ before_script:
300
300
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
301
301
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
302
302
  - |-
303
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
303
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
304
+ COPY --chown=node:node $APP_DIR .
304
305
  RUN yarn plugin import workspace-tools
305
306
  RUN yarn workspaces focus --production && yarn rebuild"
306
307
  - |-
@@ -647,7 +648,7 @@ before_script:
647
648
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
648
649
  - collapseable_section_end "nodeinstall"
649
650
  - collapseable_section_start "yarninstall" "Yarn install"
650
- - yarn install --immutable
651
+ - yarn install --immutable --inline-builds
651
652
  - collapseable_section_end "yarninstall"
652
653
  - yarn lint
653
654
  cache:
@@ -691,7 +692,7 @@ before_script:
691
692
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
692
693
  - collapseable_section_end "nodeinstall"
693
694
  - collapseable_section_start "yarninstall" "Yarn install"
694
- - yarn install --immutable
695
+ - yarn install --immutable --inline-builds
695
696
  - collapseable_section_end "yarninstall"
696
697
  - yarn test
697
698
  cache:
@@ -751,7 +752,7 @@ before_script:
751
752
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
752
753
  - collapseable_section_end "nodeinstall"
753
754
  - collapseable_section_start "yarninstall" "Yarn install"
754
- - yarn install --immutable
755
+ - yarn install --immutable --inline-builds
755
756
  - collapseable_section_end "yarninstall"
756
757
  - yarn build
757
758
  cache:
@@ -810,7 +811,8 @@ before_script:
810
811
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
811
812
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
812
813
  - |-
813
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
814
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
815
+ COPY --chown=node:node $APP_DIR .
814
816
  RUN yarn plugin import workspace-tools
815
817
  RUN yarn workspaces focus --production && yarn rebuild"
816
818
  - |-
@@ -1155,7 +1157,7 @@ before_script:
1155
1157
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1156
1158
  - collapseable_section_end "nodeinstall"
1157
1159
  - collapseable_section_start "yarninstall" "Yarn install"
1158
- - yarn install --immutable
1160
+ - yarn install --immutable --inline-builds
1159
1161
  - collapseable_section_end "yarninstall"
1160
1162
  - yarn build
1161
1163
  cache:
@@ -1210,7 +1212,8 @@ before_script:
1210
1212
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
1211
1213
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1212
1214
  - |-
1213
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1215
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1216
+ COPY --chown=node:node $APP_DIR .
1214
1217
  RUN yarn plugin import workspace-tools
1215
1218
  RUN yarn workspaces focus --production && yarn rebuild"
1216
1219
  - |-
@@ -1545,7 +1548,7 @@ before_script:
1545
1548
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1546
1549
  - collapseable_section_end "nodeinstall"
1547
1550
  - collapseable_section_start "yarninstall" "Yarn install"
1548
- - yarn install --immutable
1551
+ - yarn install --immutable --inline-builds
1549
1552
  - collapseable_section_end "yarninstall"
1550
1553
  - yarn build
1551
1554
  cache:
@@ -1600,7 +1603,8 @@ before_script:
1600
1603
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
1601
1604
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1602
1605
  - |-
1603
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1606
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1607
+ COPY --chown=node:node $APP_DIR .
1604
1608
  RUN yarn plugin import workspace-tools
1605
1609
  RUN yarn workspaces focus --production && yarn rebuild"
1606
1610
  - |-
@@ -149,7 +149,7 @@ before_script:
149
149
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
150
150
  - collapseable_section_end "nodeinstall"
151
151
  - collapseable_section_start "yarninstall" "Yarn install"
152
- - yarn install --immutable
152
+ - yarn install --immutable --inline-builds
153
153
  - collapseable_section_end "yarninstall"
154
154
  - yarn lint
155
155
  cache:
@@ -189,7 +189,7 @@ before_script:
189
189
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
190
190
  - collapseable_section_end "nodeinstall"
191
191
  - collapseable_section_start "yarninstall" "Yarn install"
192
- - yarn install --immutable
192
+ - yarn install --immutable --inline-builds
193
193
  - collapseable_section_end "yarninstall"
194
194
  - yarn test
195
195
  cache:
@@ -243,7 +243,7 @@ before_script:
243
243
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
244
244
  - collapseable_section_end "nodeinstall"
245
245
  - collapseable_section_start "yarninstall" "Yarn install"
246
- - yarn install --immutable
246
+ - yarn install --immutable --inline-builds
247
247
  - collapseable_section_end "yarninstall"
248
248
  - yarn build
249
249
  cache:
@@ -298,7 +298,8 @@ before_script:
298
298
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
299
299
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
300
300
  - |-
301
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
301
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
302
+ COPY --chown=node:node $APP_DIR .
302
303
  RUN yarn plugin import workspace-tools
303
304
  RUN yarn workspaces focus --production && yarn rebuild"
304
305
  - |-
@@ -633,7 +634,7 @@ before_script:
633
634
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
634
635
  - collapseable_section_end "nodeinstall"
635
636
  - collapseable_section_start "yarninstall" "Yarn install"
636
- - yarn install --immutable
637
+ - yarn install --immutable --inline-builds
637
638
  - collapseable_section_end "yarninstall"
638
639
  - yarn lint
639
640
  cache:
@@ -677,7 +678,7 @@ before_script:
677
678
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
678
679
  - collapseable_section_end "nodeinstall"
679
680
  - collapseable_section_start "yarninstall" "Yarn install"
680
- - yarn install --immutable
681
+ - yarn install --immutable --inline-builds
681
682
  - collapseable_section_end "yarninstall"
682
683
  - yarn test
683
684
  cache:
@@ -735,7 +736,7 @@ before_script:
735
736
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
736
737
  - collapseable_section_end "nodeinstall"
737
738
  - collapseable_section_start "yarninstall" "Yarn install"
738
- - yarn install --immutable
739
+ - yarn install --immutable --inline-builds
739
740
  - collapseable_section_end "yarninstall"
740
741
  - yarn build
741
742
  cache:
@@ -794,7 +795,8 @@ before_script:
794
795
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
795
796
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
796
797
  - |-
797
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
798
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
799
+ COPY --chown=node:node $APP_DIR .
798
800
  RUN yarn plugin import workspace-tools
799
801
  RUN yarn workspaces focus --production && yarn rebuild"
800
802
  - |-
@@ -1120,7 +1122,7 @@ before_script:
1120
1122
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1121
1123
  - collapseable_section_end "nodeinstall"
1122
1124
  - collapseable_section_start "yarninstall" "Yarn install"
1123
- - yarn install --immutable
1125
+ - yarn install --immutable --inline-builds
1124
1126
  - collapseable_section_end "yarninstall"
1125
1127
  - yarn build
1126
1128
  cache:
@@ -1175,7 +1177,8 @@ before_script:
1175
1177
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
1176
1178
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1177
1179
  - |-
1178
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1180
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1181
+ COPY --chown=node:node $APP_DIR .
1179
1182
  RUN yarn plugin import workspace-tools
1180
1183
  RUN yarn workspaces focus --production && yarn rebuild"
1181
1184
  - |-
@@ -1496,7 +1499,7 @@ before_script:
1496
1499
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1497
1500
  - collapseable_section_end "nodeinstall"
1498
1501
  - collapseable_section_start "yarninstall" "Yarn install"
1499
- - yarn install --immutable
1502
+ - yarn install --immutable --inline-builds
1500
1503
  - collapseable_section_end "yarninstall"
1501
1504
  - yarn build
1502
1505
  cache:
@@ -1551,7 +1554,8 @@ before_script:
1551
1554
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
1552
1555
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1553
1556
  - |-
1554
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1557
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1558
+ COPY --chown=node:node $APP_DIR .
1555
1559
  RUN yarn plugin import workspace-tools
1556
1560
  RUN yarn workspaces focus --production && yarn rebuild"
1557
1561
  - |-
@@ -1879,7 +1883,7 @@ before_script:
1879
1883
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1880
1884
  - collapseable_section_end "nodeinstall"
1881
1885
  - collapseable_section_start "yarninstall" "Yarn install"
1882
- - yarn install --immutable
1886
+ - yarn install --immutable --inline-builds
1883
1887
  - collapseable_section_end "yarninstall"
1884
1888
  - yarn lint
1885
1889
  cache:
@@ -1919,7 +1923,7 @@ before_script:
1919
1923
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1920
1924
  - collapseable_section_end "nodeinstall"
1921
1925
  - collapseable_section_start "yarninstall" "Yarn install"
1922
- - yarn install --immutable
1926
+ - yarn install --immutable --inline-builds
1923
1927
  - collapseable_section_end "yarninstall"
1924
1928
  - yarn test
1925
1929
  cache:
@@ -1989,7 +1993,7 @@ before_script:
1989
1993
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1990
1994
  - collapseable_section_end "nodeinstall"
1991
1995
  - collapseable_section_start "yarninstall" "Yarn install"
1992
- - yarn install --immutable
1996
+ - yarn install --immutable --inline-builds
1993
1997
  - collapseable_section_end "yarninstall"
1994
1998
  - yarn build
1995
1999
  cache:
@@ -2045,7 +2049,8 @@ before_script:
2045
2049
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
2046
2050
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
2047
2051
  - |-
2048
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
2052
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
2053
+ COPY --chown=node:node $APP_DIR .
2049
2054
  RUN yarn plugin import workspace-tools
2050
2055
  RUN yarn workspaces focus --production && yarn rebuild"
2051
2056
  - |-
@@ -2370,7 +2375,7 @@ before_script:
2370
2375
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
2371
2376
  - collapseable_section_end "nodeinstall"
2372
2377
  - collapseable_section_start "yarninstall" "Yarn install"
2373
- - yarn install --immutable
2378
+ - yarn install --immutable --inline-builds
2374
2379
  - collapseable_section_end "yarninstall"
2375
2380
  - yarn lint
2376
2381
  cache:
@@ -2414,7 +2419,7 @@ before_script:
2414
2419
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
2415
2420
  - collapseable_section_end "nodeinstall"
2416
2421
  - collapseable_section_start "yarninstall" "Yarn install"
2417
- - yarn install --immutable
2422
+ - yarn install --immutable --inline-builds
2418
2423
  - collapseable_section_end "yarninstall"
2419
2424
  - yarn test
2420
2425
  cache:
@@ -2488,7 +2493,7 @@ before_script:
2488
2493
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
2489
2494
  - collapseable_section_end "nodeinstall"
2490
2495
  - collapseable_section_start "yarninstall" "Yarn install"
2491
- - yarn install --immutable
2496
+ - yarn install --immutable --inline-builds
2492
2497
  - collapseable_section_end "yarninstall"
2493
2498
  - yarn build
2494
2499
  cache:
@@ -2548,7 +2553,8 @@ before_script:
2548
2553
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
2549
2554
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
2550
2555
  - |-
2551
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
2556
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
2557
+ COPY --chown=node:node $APP_DIR .
2552
2558
  RUN yarn plugin import workspace-tools
2553
2559
  RUN yarn workspaces focus --production && yarn rebuild"
2554
2560
  - |-
@@ -2885,7 +2891,7 @@ before_script:
2885
2891
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
2886
2892
  - collapseable_section_end "nodeinstall"
2887
2893
  - collapseable_section_start "yarninstall" "Yarn install"
2888
- - yarn install --immutable
2894
+ - yarn install --immutable --inline-builds
2889
2895
  - collapseable_section_end "yarninstall"
2890
2896
  - yarn build
2891
2897
  cache:
@@ -2941,7 +2947,8 @@ before_script:
2941
2947
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
2942
2948
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
2943
2949
  - |-
2944
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
2950
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
2951
+ COPY --chown=node:node $APP_DIR .
2945
2952
  RUN yarn plugin import workspace-tools
2946
2953
  RUN yarn workspaces focus --production && yarn rebuild"
2947
2954
  - |-
@@ -3268,7 +3275,7 @@ before_script:
3268
3275
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
3269
3276
  - collapseable_section_end "nodeinstall"
3270
3277
  - collapseable_section_start "yarninstall" "Yarn install"
3271
- - yarn install --immutable
3278
+ - yarn install --immutable --inline-builds
3272
3279
  - collapseable_section_end "yarninstall"
3273
3280
  - yarn build
3274
3281
  cache:
@@ -3324,7 +3331,8 @@ before_script:
3324
3331
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
3325
3332
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
3326
3333
  - |-
3327
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
3334
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
3335
+ COPY --chown=node:node $APP_DIR .
3328
3336
  RUN yarn plugin import workspace-tools
3329
3337
  RUN yarn workspaces focus --production && yarn rebuild"
3330
3338
  - |-
@@ -149,7 +149,7 @@ before_script:
149
149
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
150
150
  - collapseable_section_end "nodeinstall"
151
151
  - collapseable_section_start "yarninstall" "Yarn install"
152
- - yarn install --immutable
152
+ - yarn install --immutable --inline-builds
153
153
  - collapseable_section_end "yarninstall"
154
154
  - yarn lint
155
155
  cache:
@@ -189,7 +189,7 @@ before_script:
189
189
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
190
190
  - collapseable_section_end "nodeinstall"
191
191
  - collapseable_section_start "yarninstall" "Yarn install"
192
- - yarn install --immutable
192
+ - yarn install --immutable --inline-builds
193
193
  - collapseable_section_end "yarninstall"
194
194
  - yarn test
195
195
  cache:
@@ -245,7 +245,7 @@ before_script:
245
245
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
246
246
  - collapseable_section_end "nodeinstall"
247
247
  - collapseable_section_start "yarninstall" "Yarn install"
248
- - yarn install --immutable
248
+ - yarn install --immutable --inline-builds
249
249
  - collapseable_section_end "yarninstall"
250
250
  - yarn build
251
251
  cache:
@@ -300,7 +300,8 @@ before_script:
300
300
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
301
301
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
302
302
  - |-
303
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
303
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
304
+ COPY --chown=node:node $APP_DIR .
304
305
  RUN yarn plugin import workspace-tools
305
306
  RUN yarn workspaces focus --production && yarn rebuild"
306
307
  - |-
@@ -673,7 +674,7 @@ before_script:
673
674
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
674
675
  - collapseable_section_end "nodeinstall"
675
676
  - collapseable_section_start "yarninstall" "Yarn install"
676
- - yarn install --immutable
677
+ - yarn install --immutable --inline-builds
677
678
  - collapseable_section_end "yarninstall"
678
679
  - yarn lint
679
680
  cache:
@@ -717,7 +718,7 @@ before_script:
717
718
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
718
719
  - collapseable_section_end "nodeinstall"
719
720
  - collapseable_section_start "yarninstall" "Yarn install"
720
- - yarn install --immutable
721
+ - yarn install --immutable --inline-builds
721
722
  - collapseable_section_end "yarninstall"
722
723
  - yarn test
723
724
  cache:
@@ -777,7 +778,7 @@ before_script:
777
778
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
778
779
  - collapseable_section_end "nodeinstall"
779
780
  - collapseable_section_start "yarninstall" "Yarn install"
780
- - yarn install --immutable
781
+ - yarn install --immutable --inline-builds
781
782
  - collapseable_section_end "yarninstall"
782
783
  - yarn build
783
784
  cache:
@@ -836,7 +837,8 @@ before_script:
836
837
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
837
838
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
838
839
  - |-
839
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
840
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
841
+ COPY --chown=node:node $APP_DIR .
840
842
  RUN yarn plugin import workspace-tools
841
843
  RUN yarn workspaces focus --production && yarn rebuild"
842
844
  - |-
@@ -1207,7 +1209,7 @@ before_script:
1207
1209
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1208
1210
  - collapseable_section_end "nodeinstall"
1209
1211
  - collapseable_section_start "yarninstall" "Yarn install"
1210
- - yarn install --immutable
1212
+ - yarn install --immutable --inline-builds
1211
1213
  - collapseable_section_end "yarninstall"
1212
1214
  - yarn build
1213
1215
  cache:
@@ -1262,7 +1264,8 @@ before_script:
1262
1264
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
1263
1265
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1264
1266
  - |-
1265
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1267
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1268
+ COPY --chown=node:node $APP_DIR .
1266
1269
  RUN yarn plugin import workspace-tools
1267
1270
  RUN yarn workspaces focus --production && yarn rebuild"
1268
1271
  - |-
@@ -1623,7 +1626,7 @@ before_script:
1623
1626
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1624
1627
  - collapseable_section_end "nodeinstall"
1625
1628
  - collapseable_section_start "yarninstall" "Yarn install"
1626
- - yarn install --immutable
1629
+ - yarn install --immutable --inline-builds
1627
1630
  - collapseable_section_end "yarninstall"
1628
1631
  - yarn build
1629
1632
  cache:
@@ -1678,7 +1681,8 @@ before_script:
1678
1681
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
1679
1682
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1680
1683
  - |-
1681
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1684
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1685
+ COPY --chown=node:node $APP_DIR .
1682
1686
  RUN yarn plugin import workspace-tools
1683
1687
  RUN yarn workspaces focus --production && yarn rebuild"
1684
1688
  - |-
@@ -149,7 +149,7 @@ before_script:
149
149
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
150
150
  - collapseable_section_end "nodeinstall"
151
151
  - collapseable_section_start "yarninstall" "Yarn install"
152
- - yarn install --immutable
152
+ - yarn install --immutable --inline-builds
153
153
  - collapseable_section_end "yarninstall"
154
154
  - yarn lint
155
155
  cache:
@@ -189,7 +189,7 @@ before_script:
189
189
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
190
190
  - collapseable_section_end "nodeinstall"
191
191
  - collapseable_section_start "yarninstall" "Yarn install"
192
- - yarn install --immutable
192
+ - yarn install --immutable --inline-builds
193
193
  - collapseable_section_end "yarninstall"
194
194
  - yarn test
195
195
  cache:
@@ -244,7 +244,7 @@ before_script:
244
244
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
245
245
  - collapseable_section_end "nodeinstall"
246
246
  - collapseable_section_start "yarninstall" "Yarn install"
247
- - yarn install --immutable
247
+ - yarn install --immutable --inline-builds
248
248
  - collapseable_section_end "yarninstall"
249
249
  - yarn build
250
250
  cache:
@@ -298,7 +298,8 @@ before_script:
298
298
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
299
299
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
300
300
  - |-
301
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
301
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
302
+ COPY --chown=node:node $APP_DIR .
302
303
  RUN yarn plugin import workspace-tools
303
304
  RUN yarn workspaces focus --production && yarn rebuild"
304
305
  - |-
@@ -542,7 +543,7 @@ before_script:
542
543
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
543
544
  - collapseable_section_end "nodeinstall"
544
545
  - collapseable_section_start "yarninstall" "Yarn install"
545
- - yarn install --immutable
546
+ - yarn install --immutable --inline-builds
546
547
  - collapseable_section_end "yarninstall"
547
548
  - yarn lint
548
549
  cache:
@@ -586,7 +587,7 @@ before_script:
586
587
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
587
588
  - collapseable_section_end "nodeinstall"
588
589
  - collapseable_section_start "yarninstall" "Yarn install"
589
- - yarn install --immutable
590
+ - yarn install --immutable --inline-builds
590
591
  - collapseable_section_end "yarninstall"
591
592
  - yarn test
592
593
  cache:
@@ -645,7 +646,7 @@ before_script:
645
646
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
646
647
  - collapseable_section_end "nodeinstall"
647
648
  - collapseable_section_start "yarninstall" "Yarn install"
648
- - yarn install --immutable
649
+ - yarn install --immutable --inline-builds
649
650
  - collapseable_section_end "yarninstall"
650
651
  - yarn build
651
652
  cache:
@@ -703,7 +704,8 @@ before_script:
703
704
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
704
705
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
705
706
  - |-
706
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
707
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
708
+ COPY --chown=node:node $APP_DIR .
707
709
  RUN yarn plugin import workspace-tools
708
710
  RUN yarn workspaces focus --production && yarn rebuild"
709
711
  - |-
@@ -949,7 +951,7 @@ before_script:
949
951
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
950
952
  - collapseable_section_end "nodeinstall"
951
953
  - collapseable_section_start "yarninstall" "Yarn install"
952
- - yarn install --immutable
954
+ - yarn install --immutable --inline-builds
953
955
  - collapseable_section_end "yarninstall"
954
956
  - yarn build
955
957
  cache:
@@ -1003,7 +1005,8 @@ before_script:
1003
1005
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
1004
1006
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1005
1007
  - |-
1006
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1008
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1009
+ COPY --chown=node:node $APP_DIR .
1007
1010
  RUN yarn plugin import workspace-tools
1008
1011
  RUN yarn workspaces focus --production && yarn rebuild"
1009
1012
  - |-
@@ -1234,7 +1237,7 @@ before_script:
1234
1237
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1235
1238
  - collapseable_section_end "nodeinstall"
1236
1239
  - collapseable_section_start "yarninstall" "Yarn install"
1237
- - yarn install --immutable
1240
+ - yarn install --immutable --inline-builds
1238
1241
  - collapseable_section_end "yarninstall"
1239
1242
  - yarn build
1240
1243
  cache:
@@ -1288,7 +1291,8 @@ before_script:
1288
1291
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
1289
1292
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1290
1293
  - |-
1291
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1294
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1295
+ COPY --chown=node:node $APP_DIR .
1292
1296
  RUN yarn plugin import workspace-tools
1293
1297
  RUN yarn workspaces focus --production && yarn rebuild"
1294
1298
  - |-
@@ -149,7 +149,7 @@ before_script:
149
149
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
150
150
  - collapseable_section_end "nodeinstall"
151
151
  - collapseable_section_start "yarninstall" "Yarn install"
152
- - yarn install --immutable
152
+ - yarn install --immutable --inline-builds
153
153
  - collapseable_section_end "yarninstall"
154
154
  - yarn lint
155
155
  cache:
@@ -189,7 +189,7 @@ before_script:
189
189
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
190
190
  - collapseable_section_end "nodeinstall"
191
191
  - collapseable_section_start "yarninstall" "Yarn install"
192
- - yarn install --immutable
192
+ - yarn install --immutable --inline-builds
193
193
  - collapseable_section_end "yarninstall"
194
194
  - yarn test
195
195
  cache:
@@ -245,7 +245,7 @@ before_script:
245
245
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
246
246
  - collapseable_section_end "nodeinstall"
247
247
  - collapseable_section_start "yarninstall" "Yarn install"
248
- - yarn install --immutable
248
+ - yarn install --immutable --inline-builds
249
249
  - collapseable_section_end "yarninstall"
250
250
  - echo "add healthcheck package"
251
251
  - meteor add panter:healthroute --allow-superuser
@@ -654,7 +654,7 @@ before_script:
654
654
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
655
655
  - collapseable_section_end "nodeinstall"
656
656
  - collapseable_section_start "yarninstall" "Yarn install"
657
- - yarn install --immutable
657
+ - yarn install --immutable --inline-builds
658
658
  - collapseable_section_end "yarninstall"
659
659
  - yarn lint
660
660
  cache:
@@ -698,7 +698,7 @@ before_script:
698
698
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
699
699
  - collapseable_section_end "nodeinstall"
700
700
  - collapseable_section_start "yarninstall" "Yarn install"
701
- - yarn install --immutable
701
+ - yarn install --immutable --inline-builds
702
702
  - collapseable_section_end "yarninstall"
703
703
  - yarn test
704
704
  cache:
@@ -758,7 +758,7 @@ before_script:
758
758
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
759
759
  - collapseable_section_end "nodeinstall"
760
760
  - collapseable_section_start "yarninstall" "Yarn install"
761
- - yarn install --immutable
761
+ - yarn install --immutable --inline-builds
762
762
  - collapseable_section_end "yarninstall"
763
763
  - echo "add healthcheck package"
764
764
  - meteor add panter:healthroute --allow-superuser
@@ -1169,7 +1169,7 @@ before_script:
1169
1169
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1170
1170
  - collapseable_section_end "nodeinstall"
1171
1171
  - collapseable_section_start "yarninstall" "Yarn install"
1172
- - yarn install --immutable
1172
+ - yarn install --immutable --inline-builds
1173
1173
  - collapseable_section_end "yarninstall"
1174
1174
  - echo "add healthcheck package"
1175
1175
  - meteor add panter:healthroute --allow-superuser
@@ -1567,7 +1567,7 @@ before_script:
1567
1567
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1568
1568
  - collapseable_section_end "nodeinstall"
1569
1569
  - collapseable_section_start "yarninstall" "Yarn install"
1570
- - yarn install --immutable
1570
+ - yarn install --immutable --inline-builds
1571
1571
  - collapseable_section_end "yarninstall"
1572
1572
  - echo "add healthcheck package"
1573
1573
  - meteor add panter:healthroute --allow-superuser