@catladder/pipeline 3.26.0 → 3.28.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 (57) hide show
  1. package/dist/build/node/yarn.d.ts +2 -1
  2. package/dist/build/node/yarn.js +7 -3
  3. package/dist/build/types.d.ts +6 -0
  4. package/dist/constants.js +1 -1
  5. package/dist/deploy/types/googleCloudRun.d.ts +1 -1
  6. package/dist/tsconfig.tsbuildinfo +1 -1
  7. package/examples/__snapshots__/automatic-releases.test.ts.snap +24 -16
  8. package/examples/__snapshots__/cloud-run-health-check-defaults.test.ts.snap +24 -16
  9. package/examples/__snapshots__/cloud-run-health-check-only-startup.test.ts.snap +24 -16
  10. package/examples/__snapshots__/cloud-run-health-check.test.ts.snap +24 -16
  11. package/examples/__snapshots__/cloud-run-http2.test.ts.snap +24 -16
  12. package/examples/__snapshots__/cloud-run-memory-limit.test.ts.snap +24 -16
  13. package/examples/__snapshots__/cloud-run-meteor-with-worker.test.ts.snap +8 -8
  14. package/examples/__snapshots__/cloud-run-nextjs.test.ts.snap +24 -16
  15. package/examples/__snapshots__/cloud-run-no-cpu-throttling.test.ts.snap +24 -16
  16. package/examples/__snapshots__/cloud-run-no-service.test.ts.snap +24 -16
  17. package/examples/__snapshots__/cloud-run-non-public.test.ts.snap +24 -16
  18. package/examples/__snapshots__/cloud-run-post-stop-job.test.ts.snap +24 -16
  19. package/examples/__snapshots__/cloud-run-service-custom-vpc-connector.test.ts.snap +24 -16
  20. package/examples/__snapshots__/cloud-run-service-custom-vpc.test.ts.snap +24 -16
  21. package/examples/__snapshots__/cloud-run-service-gen2.test.ts.snap +24 -16
  22. package/examples/__snapshots__/cloud-run-service-increase-timout.test.ts.snap +24 -16
  23. package/examples/__snapshots__/cloud-run-service-with-volumes.test.ts.snap +24 -16
  24. package/examples/__snapshots__/cloud-run-storybook.test.ts.snap +20 -12
  25. package/examples/__snapshots__/cloud-run-with-agents.test.ts.snap +24 -16
  26. package/examples/__snapshots__/cloud-run-with-gpu.test.ts.snap +24 -16
  27. package/examples/__snapshots__/cloud-run-with-ngnix.test.ts.snap +24 -16
  28. package/examples/__snapshots__/cloud-run-with-sql-legacy-jobs.test.ts.snap +24 -16
  29. package/examples/__snapshots__/cloud-run-with-sql-multiple-dbs.test.ts.snap +72 -48
  30. package/examples/__snapshots__/cloud-run-with-sql-reuse-db.test.ts.snap +48 -32
  31. package/examples/__snapshots__/cloud-run-with-sql.test.ts.snap +24 -16
  32. package/examples/__snapshots__/cloud-run-with-worker.test.ts.snap +24 -16
  33. package/examples/__snapshots__/custom-deploy.test.ts.snap +24 -16
  34. package/examples/__snapshots__/custom-envs.test.ts.snap +14 -14
  35. package/examples/__snapshots__/custom-verify-job.test.ts.snap +24 -16
  36. package/examples/__snapshots__/git-submodule.test.ts.snap +24 -16
  37. package/examples/__snapshots__/kubernetes-application-customization.test.ts.snap +24 -16
  38. package/examples/__snapshots__/kubernetes-with-cloud-sql.test.ts.snap +24 -16
  39. package/examples/__snapshots__/kubernetes-with-jobs.test.ts.snap +48 -32
  40. package/examples/__snapshots__/kubernetes-with-mongodb.test.ts.snap +24 -16
  41. package/examples/__snapshots__/local-dot-env.test.ts.snap +24 -16
  42. package/examples/__snapshots__/meteor-kubernetes.test.ts.snap +8 -8
  43. package/examples/__snapshots__/modify-generated-files.test.ts.snap +8 -8
  44. package/examples/__snapshots__/modify-generated-yaml.test.ts.snap +8 -8
  45. package/examples/__snapshots__/multiline-var.test.ts.snap +72 -48
  46. package/examples/__snapshots__/native-app.test.ts.snap +32 -24
  47. package/examples/__snapshots__/node-build-with-custom-image.test.ts.snap +24 -16
  48. package/examples/__snapshots__/node-build-with-docker-additions.test.ts.snap +24 -16
  49. package/examples/__snapshots__/override-secrets.test.ts.snap +24 -16
  50. package/examples/__snapshots__/referencing-other-vars.test.ts.snap +72 -48
  51. package/examples/__snapshots__/wait-for-other-deploy.test.ts.snap +16 -16
  52. package/examples/__snapshots__/workspace-api-www-turbo-cache.test.ts.snap +40 -24
  53. package/examples/__snapshots__/workspace-api-www.test.ts.snap +40 -24
  54. package/package.json +1 -1
  55. package/src/build/node/yarn.ts +18 -5
  56. package/src/build/types.ts +6 -0
  57. 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:
@@ -271,7 +271,7 @@ before_script:
271
271
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
272
272
  - collapseable_section_end "nodeinstall"
273
273
  - collapseable_section_start "yarninstall" "Yarn install"
274
- - yarn install --immutable
274
+ - yarn install --immutable --inline-builds
275
275
  - collapseable_section_end "yarninstall"
276
276
  - yarn build
277
277
  cache:
@@ -326,9 +326,11 @@ before_script:
326
326
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app1"
327
327
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
328
328
  - |-
329
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
329
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
330
+ COPY --chown=node:node $APP_DIR .
330
331
  RUN yarn plugin import workspace-tools
331
- RUN yarn workspaces focus --production && yarn rebuild"
332
+ RUN yarn workspaces focus --production
333
+ RUN yarn rebuild"
332
334
  - |-
333
335
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node app1/package.json /app/app1/package.json
334
336
  COPY --chown=node:node app1/yarn.lock /app/app1/yarn.lock
@@ -585,7 +587,7 @@ before_script:
585
587
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
586
588
  - collapseable_section_end "nodeinstall"
587
589
  - collapseable_section_start "yarninstall" "Yarn install"
588
- - yarn install --immutable
590
+ - yarn install --immutable --inline-builds
589
591
  - collapseable_section_end "yarninstall"
590
592
  - yarn lint
591
593
  cache:
@@ -629,7 +631,7 @@ before_script:
629
631
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
630
632
  - collapseable_section_end "nodeinstall"
631
633
  - collapseable_section_start "yarninstall" "Yarn install"
632
- - yarn install --immutable
634
+ - yarn install --immutable --inline-builds
633
635
  - collapseable_section_end "yarninstall"
634
636
  - yarn test
635
637
  cache:
@@ -715,7 +717,7 @@ before_script:
715
717
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
716
718
  - collapseable_section_end "nodeinstall"
717
719
  - collapseable_section_start "yarninstall" "Yarn install"
718
- - yarn install --immutable
720
+ - yarn install --immutable --inline-builds
719
721
  - collapseable_section_end "yarninstall"
720
722
  - yarn build
721
723
  cache:
@@ -774,9 +776,11 @@ before_script:
774
776
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app1"
775
777
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
776
778
  - |-
777
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
779
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
780
+ COPY --chown=node:node $APP_DIR .
778
781
  RUN yarn plugin import workspace-tools
779
- RUN yarn workspaces focus --production && yarn rebuild"
782
+ RUN yarn workspaces focus --production
783
+ RUN yarn rebuild"
780
784
  - |-
781
785
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node app1/package.json /app/app1/package.json
782
786
  COPY --chown=node:node app1/yarn.lock /app/app1/yarn.lock
@@ -1062,7 +1066,7 @@ before_script:
1062
1066
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1063
1067
  - collapseable_section_end "nodeinstall"
1064
1068
  - collapseable_section_start "yarninstall" "Yarn install"
1065
- - yarn install --immutable
1069
+ - yarn install --immutable --inline-builds
1066
1070
  - collapseable_section_end "yarninstall"
1067
1071
  - yarn build
1068
1072
  cache:
@@ -1117,9 +1121,11 @@ before_script:
1117
1121
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app1"
1118
1122
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1119
1123
  - |-
1120
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1124
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1125
+ COPY --chown=node:node $APP_DIR .
1121
1126
  RUN yarn plugin import workspace-tools
1122
- RUN yarn workspaces focus --production && yarn rebuild"
1127
+ RUN yarn workspaces focus --production
1128
+ RUN yarn rebuild"
1123
1129
  - |-
1124
1130
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node app1/package.json /app/app1/package.json
1125
1131
  COPY --chown=node:node app1/yarn.lock /app/app1/yarn.lock
@@ -1390,7 +1396,7 @@ before_script:
1390
1396
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1391
1397
  - collapseable_section_end "nodeinstall"
1392
1398
  - collapseable_section_start "yarninstall" "Yarn install"
1393
- - yarn install --immutable
1399
+ - yarn install --immutable --inline-builds
1394
1400
  - collapseable_section_end "yarninstall"
1395
1401
  - yarn build
1396
1402
  cache:
@@ -1445,9 +1451,11 @@ before_script:
1445
1451
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app1"
1446
1452
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1447
1453
  - |-
1448
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1454
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1455
+ COPY --chown=node:node $APP_DIR .
1449
1456
  RUN yarn plugin import workspace-tools
1450
- RUN yarn workspaces focus --production && yarn rebuild"
1457
+ RUN yarn workspaces focus --production
1458
+ RUN yarn rebuild"
1451
1459
  - |-
1452
1460
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node app1/package.json /app/app1/package.json
1453
1461
  COPY --chown=node:node app1/yarn.lock /app/app1/yarn.lock
@@ -1697,7 +1705,7 @@ before_script:
1697
1705
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1698
1706
  - collapseable_section_end "nodeinstall"
1699
1707
  - collapseable_section_start "yarninstall" "Yarn install"
1700
- - yarn install --immutable
1708
+ - yarn install --immutable --inline-builds
1701
1709
  - collapseable_section_end "yarninstall"
1702
1710
  - yarn lint
1703
1711
  cache:
@@ -1737,7 +1745,7 @@ before_script:
1737
1745
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1738
1746
  - collapseable_section_end "nodeinstall"
1739
1747
  - collapseable_section_start "yarninstall" "Yarn install"
1740
- - yarn install --immutable
1748
+ - yarn install --immutable --inline-builds
1741
1749
  - collapseable_section_end "yarninstall"
1742
1750
  - yarn test
1743
1751
  cache:
@@ -1823,7 +1831,7 @@ before_script:
1823
1831
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1824
1832
  - collapseable_section_end "nodeinstall"
1825
1833
  - collapseable_section_start "yarninstall" "Yarn install"
1826
- - yarn install --immutable
1834
+ - yarn install --immutable --inline-builds
1827
1835
  - collapseable_section_end "yarninstall"
1828
1836
  - yarn build
1829
1837
  cache:
@@ -1878,9 +1886,11 @@ before_script:
1878
1886
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app2"
1879
1887
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1880
1888
  - |-
1881
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1889
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1890
+ COPY --chown=node:node $APP_DIR .
1882
1891
  RUN yarn plugin import workspace-tools
1883
- RUN yarn workspaces focus --production && yarn rebuild"
1892
+ RUN yarn workspaces focus --production
1893
+ RUN yarn rebuild"
1884
1894
  - |-
1885
1895
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node app2/package.json /app/app2/package.json
1886
1896
  COPY --chown=node:node app2/yarn.lock /app/app2/yarn.lock
@@ -2143,7 +2153,7 @@ before_script:
2143
2153
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
2144
2154
  - collapseable_section_end "nodeinstall"
2145
2155
  - collapseable_section_start "yarninstall" "Yarn install"
2146
- - yarn install --immutable
2156
+ - yarn install --immutable --inline-builds
2147
2157
  - collapseable_section_end "yarninstall"
2148
2158
  - yarn lint
2149
2159
  cache:
@@ -2187,7 +2197,7 @@ before_script:
2187
2197
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
2188
2198
  - collapseable_section_end "nodeinstall"
2189
2199
  - collapseable_section_start "yarninstall" "Yarn install"
2190
- - yarn install --immutable
2200
+ - yarn install --immutable --inline-builds
2191
2201
  - collapseable_section_end "yarninstall"
2192
2202
  - yarn test
2193
2203
  cache:
@@ -2277,7 +2287,7 @@ before_script:
2277
2287
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
2278
2288
  - collapseable_section_end "nodeinstall"
2279
2289
  - collapseable_section_start "yarninstall" "Yarn install"
2280
- - yarn install --immutable
2290
+ - yarn install --immutable --inline-builds
2281
2291
  - collapseable_section_end "yarninstall"
2282
2292
  - yarn build
2283
2293
  cache:
@@ -2336,9 +2346,11 @@ before_script:
2336
2346
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app2"
2337
2347
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
2338
2348
  - |-
2339
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
2349
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
2350
+ COPY --chown=node:node $APP_DIR .
2340
2351
  RUN yarn plugin import workspace-tools
2341
- RUN yarn workspaces focus --production && yarn rebuild"
2352
+ RUN yarn workspaces focus --production
2353
+ RUN yarn rebuild"
2342
2354
  - |-
2343
2355
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node app2/package.json /app/app2/package.json
2344
2356
  COPY --chown=node:node app2/yarn.lock /app/app2/yarn.lock
@@ -2634,7 +2646,7 @@ before_script:
2634
2646
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
2635
2647
  - collapseable_section_end "nodeinstall"
2636
2648
  - collapseable_section_start "yarninstall" "Yarn install"
2637
- - yarn install --immutable
2649
+ - yarn install --immutable --inline-builds
2638
2650
  - collapseable_section_end "yarninstall"
2639
2651
  - yarn build
2640
2652
  cache:
@@ -2689,9 +2701,11 @@ before_script:
2689
2701
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app2"
2690
2702
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
2691
2703
  - |-
2692
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
2704
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
2705
+ COPY --chown=node:node $APP_DIR .
2693
2706
  RUN yarn plugin import workspace-tools
2694
- RUN yarn workspaces focus --production && yarn rebuild"
2707
+ RUN yarn workspaces focus --production
2708
+ RUN yarn rebuild"
2695
2709
  - |-
2696
2710
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node app2/package.json /app/app2/package.json
2697
2711
  COPY --chown=node:node app2/yarn.lock /app/app2/yarn.lock
@@ -2972,7 +2986,7 @@ before_script:
2972
2986
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
2973
2987
  - collapseable_section_end "nodeinstall"
2974
2988
  - collapseable_section_start "yarninstall" "Yarn install"
2975
- - yarn install --immutable
2989
+ - yarn install --immutable --inline-builds
2976
2990
  - collapseable_section_end "yarninstall"
2977
2991
  - yarn build
2978
2992
  cache:
@@ -3027,9 +3041,11 @@ before_script:
3027
3041
  - export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app2"
3028
3042
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
3029
3043
  - |-
3030
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
3044
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
3045
+ COPY --chown=node:node $APP_DIR .
3031
3046
  RUN yarn plugin import workspace-tools
3032
- RUN yarn workspaces focus --production && yarn rebuild"
3047
+ RUN yarn workspaces focus --production
3048
+ RUN yarn rebuild"
3033
3049
  - |-
3034
3050
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node app2/package.json /app/app2/package.json
3035
3051
  COPY --chown=node:node app2/yarn.lock /app/app2/yarn.lock
@@ -3285,7 +3301,7 @@ before_script:
3285
3301
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
3286
3302
  - collapseable_section_end "nodeinstall"
3287
3303
  - collapseable_section_start "yarninstall" "Yarn install"
3288
- - yarn install --immutable
3304
+ - yarn install --immutable --inline-builds
3289
3305
  - collapseable_section_end "yarninstall"
3290
3306
  - yarn lint
3291
3307
  cache:
@@ -3325,7 +3341,7 @@ before_script:
3325
3341
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
3326
3342
  - collapseable_section_end "nodeinstall"
3327
3343
  - collapseable_section_start "yarninstall" "Yarn install"
3328
- - yarn install --immutable
3344
+ - yarn install --immutable --inline-builds
3329
3345
  - collapseable_section_end "yarninstall"
3330
3346
  - yarn test
3331
3347
  cache:
@@ -3405,7 +3421,7 @@ before_script:
3405
3421
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
3406
3422
  - collapseable_section_end "nodeinstall"
3407
3423
  - collapseable_section_start "yarninstall" "Yarn install"
3408
- - yarn install --immutable
3424
+ - yarn install --immutable --inline-builds
3409
3425
  - collapseable_section_end "yarninstall"
3410
3426
  - yarn build
3411
3427
  cache:
@@ -3461,9 +3477,11 @@ before_script:
3461
3477
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
3462
3478
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
3463
3479
  - |-
3464
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
3480
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
3481
+ COPY --chown=node:node $APP_DIR .
3465
3482
  RUN yarn plugin import workspace-tools
3466
- RUN yarn workspaces focus --production && yarn rebuild"
3483
+ RUN yarn workspaces focus --production
3484
+ RUN yarn rebuild"
3467
3485
  - |-
3468
3486
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node kube/package.json /app/kube/package.json
3469
3487
  COPY --chown=node:node kube/yarn.lock /app/kube/yarn.lock
@@ -3811,7 +3829,7 @@ before_script:
3811
3829
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
3812
3830
  - collapseable_section_end "nodeinstall"
3813
3831
  - collapseable_section_start "yarninstall" "Yarn install"
3814
- - yarn install --immutable
3832
+ - yarn install --immutable --inline-builds
3815
3833
  - collapseable_section_end "yarninstall"
3816
3834
  - yarn lint
3817
3835
  cache:
@@ -3855,7 +3873,7 @@ before_script:
3855
3873
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
3856
3874
  - collapseable_section_end "nodeinstall"
3857
3875
  - collapseable_section_start "yarninstall" "Yarn install"
3858
- - yarn install --immutable
3876
+ - yarn install --immutable --inline-builds
3859
3877
  - collapseable_section_end "yarninstall"
3860
3878
  - yarn test
3861
3879
  cache:
@@ -3939,7 +3957,7 @@ before_script:
3939
3957
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
3940
3958
  - collapseable_section_end "nodeinstall"
3941
3959
  - collapseable_section_start "yarninstall" "Yarn install"
3942
- - yarn install --immutable
3960
+ - yarn install --immutable --inline-builds
3943
3961
  - collapseable_section_end "yarninstall"
3944
3962
  - yarn build
3945
3963
  cache:
@@ -3999,9 +4017,11 @@ before_script:
3999
4017
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
4000
4018
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
4001
4019
  - |-
4002
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
4020
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
4021
+ COPY --chown=node:node $APP_DIR .
4003
4022
  RUN yarn plugin import workspace-tools
4004
- RUN yarn workspaces focus --production && yarn rebuild"
4023
+ RUN yarn workspaces focus --production
4024
+ RUN yarn rebuild"
4005
4025
  - |-
4006
4026
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node kube/package.json /app/kube/package.json
4007
4027
  COPY --chown=node:node kube/yarn.lock /app/kube/yarn.lock
@@ -4371,7 +4391,7 @@ before_script:
4371
4391
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
4372
4392
  - collapseable_section_end "nodeinstall"
4373
4393
  - collapseable_section_start "yarninstall" "Yarn install"
4374
- - yarn install --immutable
4394
+ - yarn install --immutable --inline-builds
4375
4395
  - collapseable_section_end "yarninstall"
4376
4396
  - yarn build
4377
4397
  cache:
@@ -4427,9 +4447,11 @@ before_script:
4427
4447
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
4428
4448
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
4429
4449
  - |-
4430
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
4450
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
4451
+ COPY --chown=node:node $APP_DIR .
4431
4452
  RUN yarn plugin import workspace-tools
4432
- RUN yarn workspaces focus --production && yarn rebuild"
4453
+ RUN yarn workspaces focus --production
4454
+ RUN yarn rebuild"
4433
4455
  - |-
4434
4456
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node kube/package.json /app/kube/package.json
4435
4457
  COPY --chown=node:node kube/yarn.lock /app/kube/yarn.lock
@@ -4789,7 +4811,7 @@ before_script:
4789
4811
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
4790
4812
  - collapseable_section_end "nodeinstall"
4791
4813
  - collapseable_section_start "yarninstall" "Yarn install"
4792
- - yarn install --immutable
4814
+ - yarn install --immutable --inline-builds
4793
4815
  - collapseable_section_end "yarninstall"
4794
4816
  - yarn build
4795
4817
  cache:
@@ -4845,9 +4867,11 @@ before_script:
4845
4867
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
4846
4868
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
4847
4869
  - |-
4848
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
4870
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
4871
+ COPY --chown=node:node $APP_DIR .
4849
4872
  RUN yarn plugin import workspace-tools
4850
- RUN yarn workspaces focus --production && yarn rebuild"
4873
+ RUN yarn workspaces focus --production
4874
+ RUN yarn rebuild"
4851
4875
  - |-
4852
4876
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node kube/package.json /app/kube/package.json
4853
4877
  COPY --chown=node:node kube/yarn.lock /app/kube/yarn.lock
@@ -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:
@@ -253,7 +253,7 @@ before_script:
253
253
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
254
254
  - collapseable_section_end "nodeinstall"
255
255
  - collapseable_section_start "yarninstall" "Yarn install"
256
- - yarn install --immutable
256
+ - yarn install --immutable --inline-builds
257
257
  - collapseable_section_end "yarninstall"
258
258
  - yarn build
259
259
  cache:
@@ -398,7 +398,7 @@ before_script:
398
398
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
399
399
  - collapseable_section_end "nodeinstall"
400
400
  - collapseable_section_start "yarninstall" "Yarn install"
401
- - yarn install --immutable
401
+ - yarn install --immutable --inline-builds
402
402
  - collapseable_section_end "yarninstall"
403
403
  - yarn lint
404
404
  cache:
@@ -442,7 +442,7 @@ before_script:
442
442
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
443
443
  - collapseable_section_end "nodeinstall"
444
444
  - collapseable_section_start "yarninstall" "Yarn install"
445
- - yarn install --immutable
445
+ - yarn install --immutable --inline-builds
446
446
  - collapseable_section_end "yarninstall"
447
447
  - yarn test
448
448
  cache:
@@ -510,7 +510,7 @@ before_script:
510
510
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
511
511
  - collapseable_section_end "nodeinstall"
512
512
  - collapseable_section_start "yarninstall" "Yarn install"
513
- - yarn install --immutable
513
+ - yarn install --immutable --inline-builds
514
514
  - collapseable_section_end "yarninstall"
515
515
  - yarn build
516
516
  cache:
@@ -662,7 +662,7 @@ before_script:
662
662
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
663
663
  - collapseable_section_end "nodeinstall"
664
664
  - collapseable_section_start "yarninstall" "Yarn install"
665
- - yarn install --immutable
665
+ - yarn install --immutable --inline-builds
666
666
  - collapseable_section_end "yarninstall"
667
667
  - yarn build
668
668
  cache:
@@ -804,7 +804,7 @@ before_script:
804
804
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
805
805
  - collapseable_section_end "nodeinstall"
806
806
  - collapseable_section_start "yarninstall" "Yarn install"
807
- - yarn install --immutable
807
+ - yarn install --immutable --inline-builds
808
808
  - collapseable_section_end "yarninstall"
809
809
  - yarn build
810
810
  cache:
@@ -943,7 +943,7 @@ before_script:
943
943
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
944
944
  - collapseable_section_end "nodeinstall"
945
945
  - collapseable_section_start "yarninstall" "Yarn install"
946
- - yarn install --immutable
946
+ - yarn install --immutable --inline-builds
947
947
  - collapseable_section_end "yarninstall"
948
948
  - yarn lint
949
949
  cache:
@@ -983,7 +983,7 @@ before_script:
983
983
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
984
984
  - collapseable_section_end "nodeinstall"
985
985
  - collapseable_section_start "yarninstall" "Yarn install"
986
- - yarn install --immutable
986
+ - yarn install --immutable --inline-builds
987
987
  - collapseable_section_end "yarninstall"
988
988
  - yarn test
989
989
  cache:
@@ -1047,7 +1047,7 @@ before_script:
1047
1047
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1048
1048
  - collapseable_section_end "nodeinstall"
1049
1049
  - collapseable_section_start "yarninstall" "Yarn install"
1050
- - yarn install --immutable
1050
+ - yarn install --immutable --inline-builds
1051
1051
  - collapseable_section_end "yarninstall"
1052
1052
  - yarn build
1053
1053
  cache:
@@ -1194,7 +1194,7 @@ before_script:
1194
1194
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1195
1195
  - collapseable_section_end "nodeinstall"
1196
1196
  - collapseable_section_start "yarninstall" "Yarn install"
1197
- - yarn install --immutable
1197
+ - yarn install --immutable --inline-builds
1198
1198
  - collapseable_section_end "yarninstall"
1199
1199
  - yarn lint
1200
1200
  cache:
@@ -1238,7 +1238,7 @@ before_script:
1238
1238
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1239
1239
  - collapseable_section_end "nodeinstall"
1240
1240
  - collapseable_section_start "yarninstall" "Yarn install"
1241
- - yarn install --immutable
1241
+ - yarn install --immutable --inline-builds
1242
1242
  - collapseable_section_end "yarninstall"
1243
1243
  - yarn test
1244
1244
  cache:
@@ -1306,7 +1306,7 @@ before_script:
1306
1306
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1307
1307
  - collapseable_section_end "nodeinstall"
1308
1308
  - collapseable_section_start "yarninstall" "Yarn install"
1309
- - yarn install --immutable
1309
+ - yarn install --immutable --inline-builds
1310
1310
  - collapseable_section_end "yarninstall"
1311
1311
  - yarn build
1312
1312
  cache:
@@ -1460,7 +1460,7 @@ before_script:
1460
1460
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1461
1461
  - collapseable_section_end "nodeinstall"
1462
1462
  - collapseable_section_start "yarninstall" "Yarn install"
1463
- - yarn install --immutable
1463
+ - yarn install --immutable --inline-builds
1464
1464
  - collapseable_section_end "yarninstall"
1465
1465
  - yarn build
1466
1466
  cache:
@@ -1604,7 +1604,7 @@ before_script:
1604
1604
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1605
1605
  - collapseable_section_end "nodeinstall"
1606
1606
  - collapseable_section_start "yarninstall" "Yarn install"
1607
- - yarn install --immutable
1607
+ - yarn install --immutable --inline-builds
1608
1608
  - collapseable_section_end "yarninstall"
1609
1609
  - yarn build
1610
1610
  cache: