@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:
@@ -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,9 +298,11 @@ 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
- RUN yarn workspaces focus --production && yarn rebuild"
304
+ RUN yarn workspaces focus --production
305
+ RUN yarn rebuild"
304
306
  - |-
305
307
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node api/package.json /app/api/package.json
306
308
  COPY --chown=node:node api/yarn.lock /app/api/yarn.lock
@@ -633,7 +635,7 @@ before_script:
633
635
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
634
636
  - collapseable_section_end "nodeinstall"
635
637
  - collapseable_section_start "yarninstall" "Yarn install"
636
- - yarn install --immutable
638
+ - yarn install --immutable --inline-builds
637
639
  - collapseable_section_end "yarninstall"
638
640
  - yarn lint
639
641
  cache:
@@ -677,7 +679,7 @@ before_script:
677
679
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
678
680
  - collapseable_section_end "nodeinstall"
679
681
  - collapseable_section_start "yarninstall" "Yarn install"
680
- - yarn install --immutable
682
+ - yarn install --immutable --inline-builds
681
683
  - collapseable_section_end "yarninstall"
682
684
  - yarn test
683
685
  cache:
@@ -735,7 +737,7 @@ before_script:
735
737
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
736
738
  - collapseable_section_end "nodeinstall"
737
739
  - collapseable_section_start "yarninstall" "Yarn install"
738
- - yarn install --immutable
740
+ - yarn install --immutable --inline-builds
739
741
  - collapseable_section_end "yarninstall"
740
742
  - yarn build
741
743
  cache:
@@ -794,9 +796,11 @@ before_script:
794
796
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
795
797
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
796
798
  - |-
797
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
799
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
800
+ COPY --chown=node:node $APP_DIR .
798
801
  RUN yarn plugin import workspace-tools
799
- RUN yarn workspaces focus --production && yarn rebuild"
802
+ RUN yarn workspaces focus --production
803
+ RUN yarn rebuild"
800
804
  - |-
801
805
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node api/package.json /app/api/package.json
802
806
  COPY --chown=node:node api/yarn.lock /app/api/yarn.lock
@@ -1120,7 +1124,7 @@ before_script:
1120
1124
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1121
1125
  - collapseable_section_end "nodeinstall"
1122
1126
  - collapseable_section_start "yarninstall" "Yarn install"
1123
- - yarn install --immutable
1127
+ - yarn install --immutable --inline-builds
1124
1128
  - collapseable_section_end "yarninstall"
1125
1129
  - yarn build
1126
1130
  cache:
@@ -1175,9 +1179,11 @@ before_script:
1175
1179
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
1176
1180
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1177
1181
  - |-
1178
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1182
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1183
+ COPY --chown=node:node $APP_DIR .
1179
1184
  RUN yarn plugin import workspace-tools
1180
- RUN yarn workspaces focus --production && yarn rebuild"
1185
+ RUN yarn workspaces focus --production
1186
+ RUN yarn rebuild"
1181
1187
  - |-
1182
1188
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node api/package.json /app/api/package.json
1183
1189
  COPY --chown=node:node api/yarn.lock /app/api/yarn.lock
@@ -1496,7 +1502,7 @@ before_script:
1496
1502
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1497
1503
  - collapseable_section_end "nodeinstall"
1498
1504
  - collapseable_section_start "yarninstall" "Yarn install"
1499
- - yarn install --immutable
1505
+ - yarn install --immutable --inline-builds
1500
1506
  - collapseable_section_end "yarninstall"
1501
1507
  - yarn build
1502
1508
  cache:
@@ -1551,9 +1557,11 @@ before_script:
1551
1557
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
1552
1558
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1553
1559
  - |-
1554
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1560
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1561
+ COPY --chown=node:node $APP_DIR .
1555
1562
  RUN yarn plugin import workspace-tools
1556
- RUN yarn workspaces focus --production && yarn rebuild"
1563
+ RUN yarn workspaces focus --production
1564
+ RUN yarn rebuild"
1557
1565
  - |-
1558
1566
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node api/package.json /app/api/package.json
1559
1567
  COPY --chown=node:node api/yarn.lock /app/api/yarn.lock
@@ -1879,7 +1887,7 @@ before_script:
1879
1887
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1880
1888
  - collapseable_section_end "nodeinstall"
1881
1889
  - collapseable_section_start "yarninstall" "Yarn install"
1882
- - yarn install --immutable
1890
+ - yarn install --immutable --inline-builds
1883
1891
  - collapseable_section_end "yarninstall"
1884
1892
  - yarn lint
1885
1893
  cache:
@@ -1919,7 +1927,7 @@ before_script:
1919
1927
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1920
1928
  - collapseable_section_end "nodeinstall"
1921
1929
  - collapseable_section_start "yarninstall" "Yarn install"
1922
- - yarn install --immutable
1930
+ - yarn install --immutable --inline-builds
1923
1931
  - collapseable_section_end "yarninstall"
1924
1932
  - yarn test
1925
1933
  cache:
@@ -1989,7 +1997,7 @@ before_script:
1989
1997
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1990
1998
  - collapseable_section_end "nodeinstall"
1991
1999
  - collapseable_section_start "yarninstall" "Yarn install"
1992
- - yarn install --immutable
2000
+ - yarn install --immutable --inline-builds
1993
2001
  - collapseable_section_end "yarninstall"
1994
2002
  - yarn build
1995
2003
  cache:
@@ -2045,9 +2053,11 @@ before_script:
2045
2053
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
2046
2054
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
2047
2055
  - |-
2048
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
2056
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
2057
+ COPY --chown=node:node $APP_DIR .
2049
2058
  RUN yarn plugin import workspace-tools
2050
- RUN yarn workspaces focus --production && yarn rebuild"
2059
+ RUN yarn workspaces focus --production
2060
+ RUN yarn rebuild"
2051
2061
  - |-
2052
2062
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node www/package.json /app/www/package.json
2053
2063
  COPY --chown=node:node www/yarn.lock /app/www/yarn.lock
@@ -2370,7 +2380,7 @@ before_script:
2370
2380
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
2371
2381
  - collapseable_section_end "nodeinstall"
2372
2382
  - collapseable_section_start "yarninstall" "Yarn install"
2373
- - yarn install --immutable
2383
+ - yarn install --immutable --inline-builds
2374
2384
  - collapseable_section_end "yarninstall"
2375
2385
  - yarn lint
2376
2386
  cache:
@@ -2414,7 +2424,7 @@ before_script:
2414
2424
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
2415
2425
  - collapseable_section_end "nodeinstall"
2416
2426
  - collapseable_section_start "yarninstall" "Yarn install"
2417
- - yarn install --immutable
2427
+ - yarn install --immutable --inline-builds
2418
2428
  - collapseable_section_end "yarninstall"
2419
2429
  - yarn test
2420
2430
  cache:
@@ -2488,7 +2498,7 @@ before_script:
2488
2498
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
2489
2499
  - collapseable_section_end "nodeinstall"
2490
2500
  - collapseable_section_start "yarninstall" "Yarn install"
2491
- - yarn install --immutable
2501
+ - yarn install --immutable --inline-builds
2492
2502
  - collapseable_section_end "yarninstall"
2493
2503
  - yarn build
2494
2504
  cache:
@@ -2548,9 +2558,11 @@ before_script:
2548
2558
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
2549
2559
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
2550
2560
  - |-
2551
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
2561
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
2562
+ COPY --chown=node:node $APP_DIR .
2552
2563
  RUN yarn plugin import workspace-tools
2553
- RUN yarn workspaces focus --production && yarn rebuild"
2564
+ RUN yarn workspaces focus --production
2565
+ RUN yarn rebuild"
2554
2566
  - |-
2555
2567
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node www/package.json /app/www/package.json
2556
2568
  COPY --chown=node:node www/yarn.lock /app/www/yarn.lock
@@ -2885,7 +2897,7 @@ before_script:
2885
2897
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
2886
2898
  - collapseable_section_end "nodeinstall"
2887
2899
  - collapseable_section_start "yarninstall" "Yarn install"
2888
- - yarn install --immutable
2900
+ - yarn install --immutable --inline-builds
2889
2901
  - collapseable_section_end "yarninstall"
2890
2902
  - yarn build
2891
2903
  cache:
@@ -2941,9 +2953,11 @@ before_script:
2941
2953
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
2942
2954
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
2943
2955
  - |-
2944
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
2956
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
2957
+ COPY --chown=node:node $APP_DIR .
2945
2958
  RUN yarn plugin import workspace-tools
2946
- RUN yarn workspaces focus --production && yarn rebuild"
2959
+ RUN yarn workspaces focus --production
2960
+ RUN yarn rebuild"
2947
2961
  - |-
2948
2962
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node www/package.json /app/www/package.json
2949
2963
  COPY --chown=node:node www/yarn.lock /app/www/yarn.lock
@@ -3268,7 +3282,7 @@ before_script:
3268
3282
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
3269
3283
  - collapseable_section_end "nodeinstall"
3270
3284
  - collapseable_section_start "yarninstall" "Yarn install"
3271
- - yarn install --immutable
3285
+ - yarn install --immutable --inline-builds
3272
3286
  - collapseable_section_end "yarninstall"
3273
3287
  - yarn build
3274
3288
  cache:
@@ -3324,9 +3338,11 @@ before_script:
3324
3338
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
3325
3339
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
3326
3340
  - |-
3327
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
3341
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
3342
+ COPY --chown=node:node $APP_DIR .
3328
3343
  RUN yarn plugin import workspace-tools
3329
- RUN yarn workspaces focus --production && yarn rebuild"
3344
+ RUN yarn workspaces focus --production
3345
+ RUN yarn rebuild"
3330
3346
  - |-
3331
3347
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node www/package.json /app/www/package.json
3332
3348
  COPY --chown=node:node www/yarn.lock /app/www/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:
@@ -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,9 +300,11 @@ 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
- RUN yarn workspaces focus --production && yarn rebuild"
306
+ RUN yarn workspaces focus --production
307
+ RUN yarn rebuild"
306
308
  - |-
307
309
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node api/package.json /app/api/package.json
308
310
  COPY --chown=node:node api/yarn.lock /app/api/yarn.lock
@@ -673,7 +675,7 @@ before_script:
673
675
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
674
676
  - collapseable_section_end "nodeinstall"
675
677
  - collapseable_section_start "yarninstall" "Yarn install"
676
- - yarn install --immutable
678
+ - yarn install --immutable --inline-builds
677
679
  - collapseable_section_end "yarninstall"
678
680
  - yarn lint
679
681
  cache:
@@ -717,7 +719,7 @@ before_script:
717
719
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
718
720
  - collapseable_section_end "nodeinstall"
719
721
  - collapseable_section_start "yarninstall" "Yarn install"
720
- - yarn install --immutable
722
+ - yarn install --immutable --inline-builds
721
723
  - collapseable_section_end "yarninstall"
722
724
  - yarn test
723
725
  cache:
@@ -777,7 +779,7 @@ before_script:
777
779
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
778
780
  - collapseable_section_end "nodeinstall"
779
781
  - collapseable_section_start "yarninstall" "Yarn install"
780
- - yarn install --immutable
782
+ - yarn install --immutable --inline-builds
781
783
  - collapseable_section_end "yarninstall"
782
784
  - yarn build
783
785
  cache:
@@ -836,9 +838,11 @@ before_script:
836
838
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
837
839
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
838
840
  - |-
839
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
841
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
842
+ COPY --chown=node:node $APP_DIR .
840
843
  RUN yarn plugin import workspace-tools
841
- RUN yarn workspaces focus --production && yarn rebuild"
844
+ RUN yarn workspaces focus --production
845
+ RUN yarn rebuild"
842
846
  - |-
843
847
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node api/package.json /app/api/package.json
844
848
  COPY --chown=node:node api/yarn.lock /app/api/yarn.lock
@@ -1207,7 +1211,7 @@ before_script:
1207
1211
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1208
1212
  - collapseable_section_end "nodeinstall"
1209
1213
  - collapseable_section_start "yarninstall" "Yarn install"
1210
- - yarn install --immutable
1214
+ - yarn install --immutable --inline-builds
1211
1215
  - collapseable_section_end "yarninstall"
1212
1216
  - yarn build
1213
1217
  cache:
@@ -1262,9 +1266,11 @@ before_script:
1262
1266
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
1263
1267
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1264
1268
  - |-
1265
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1269
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1270
+ COPY --chown=node:node $APP_DIR .
1266
1271
  RUN yarn plugin import workspace-tools
1267
- RUN yarn workspaces focus --production && yarn rebuild"
1272
+ RUN yarn workspaces focus --production
1273
+ RUN yarn rebuild"
1268
1274
  - |-
1269
1275
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node api/package.json /app/api/package.json
1270
1276
  COPY --chown=node:node api/yarn.lock /app/api/yarn.lock
@@ -1623,7 +1629,7 @@ before_script:
1623
1629
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1624
1630
  - collapseable_section_end "nodeinstall"
1625
1631
  - collapseable_section_start "yarninstall" "Yarn install"
1626
- - yarn install --immutable
1632
+ - yarn install --immutable --inline-builds
1627
1633
  - collapseable_section_end "yarninstall"
1628
1634
  - yarn build
1629
1635
  cache:
@@ -1678,9 +1684,11 @@ before_script:
1678
1684
  - export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
1679
1685
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1680
1686
  - |-
1681
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1687
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1688
+ COPY --chown=node:node $APP_DIR .
1682
1689
  RUN yarn plugin import workspace-tools
1683
- RUN yarn workspaces focus --production && yarn rebuild"
1690
+ RUN yarn workspaces focus --production
1691
+ RUN yarn rebuild"
1684
1692
  - |-
1685
1693
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node api/package.json /app/api/package.json
1686
1694
  COPY --chown=node:node api/yarn.lock /app/api/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:
@@ -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,9 +298,11 @@ 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
- RUN yarn workspaces focus --production && yarn rebuild"
304
+ RUN yarn workspaces focus --production
305
+ RUN yarn rebuild"
304
306
  - |-
305
307
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node api/package.json /app/api/package.json
306
308
  COPY --chown=node:node api/yarn.lock /app/api/yarn.lock
@@ -542,7 +544,7 @@ before_script:
542
544
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
543
545
  - collapseable_section_end "nodeinstall"
544
546
  - collapseable_section_start "yarninstall" "Yarn install"
545
- - yarn install --immutable
547
+ - yarn install --immutable --inline-builds
546
548
  - collapseable_section_end "yarninstall"
547
549
  - yarn lint
548
550
  cache:
@@ -586,7 +588,7 @@ before_script:
586
588
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
587
589
  - collapseable_section_end "nodeinstall"
588
590
  - collapseable_section_start "yarninstall" "Yarn install"
589
- - yarn install --immutable
591
+ - yarn install --immutable --inline-builds
590
592
  - collapseable_section_end "yarninstall"
591
593
  - yarn test
592
594
  cache:
@@ -645,7 +647,7 @@ before_script:
645
647
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
646
648
  - collapseable_section_end "nodeinstall"
647
649
  - collapseable_section_start "yarninstall" "Yarn install"
648
- - yarn install --immutable
650
+ - yarn install --immutable --inline-builds
649
651
  - collapseable_section_end "yarninstall"
650
652
  - yarn build
651
653
  cache:
@@ -703,9 +705,11 @@ before_script:
703
705
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
704
706
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
705
707
  - |-
706
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
708
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
709
+ COPY --chown=node:node $APP_DIR .
707
710
  RUN yarn plugin import workspace-tools
708
- RUN yarn workspaces focus --production && yarn rebuild"
711
+ RUN yarn workspaces focus --production
712
+ RUN yarn rebuild"
709
713
  - |-
710
714
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node api/package.json /app/api/package.json
711
715
  COPY --chown=node:node api/yarn.lock /app/api/yarn.lock
@@ -949,7 +953,7 @@ before_script:
949
953
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
950
954
  - collapseable_section_end "nodeinstall"
951
955
  - collapseable_section_start "yarninstall" "Yarn install"
952
- - yarn install --immutable
956
+ - yarn install --immutable --inline-builds
953
957
  - collapseable_section_end "yarninstall"
954
958
  - yarn build
955
959
  cache:
@@ -1003,9 +1007,11 @@ before_script:
1003
1007
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
1004
1008
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1005
1009
  - |-
1006
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1010
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1011
+ COPY --chown=node:node $APP_DIR .
1007
1012
  RUN yarn plugin import workspace-tools
1008
- RUN yarn workspaces focus --production && yarn rebuild"
1013
+ RUN yarn workspaces focus --production
1014
+ RUN yarn rebuild"
1009
1015
  - |-
1010
1016
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node api/package.json /app/api/package.json
1011
1017
  COPY --chown=node:node api/yarn.lock /app/api/yarn.lock
@@ -1234,7 +1240,7 @@ before_script:
1234
1240
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
1235
1241
  - collapseable_section_end "nodeinstall"
1236
1242
  - collapseable_section_start "yarninstall" "Yarn install"
1237
- - yarn install --immutable
1243
+ - yarn install --immutable --inline-builds
1238
1244
  - collapseable_section_end "yarninstall"
1239
1245
  - yarn build
1240
1246
  cache:
@@ -1288,9 +1294,11 @@ before_script:
1288
1294
  - export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
1289
1295
  - export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
1290
1296
  - |-
1291
- export DOCKER_COPY_AND_INSTALL_APP="COPY --chown=node:node $APP_DIR .
1297
+ export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
1298
+ COPY --chown=node:node $APP_DIR .
1292
1299
  RUN yarn plugin import workspace-tools
1293
- RUN yarn workspaces focus --production && yarn rebuild"
1300
+ RUN yarn workspaces focus --production
1301
+ RUN yarn rebuild"
1294
1302
  - |-
1295
1303
  export DOCKER_COPY_WORKSPACE_FILES="COPY --chown=node:node api/package.json /app/api/package.json
1296
1304
  COPY --chown=node:node api/yarn.lock /app/api/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:
@@ -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
@@ -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:
@@ -347,7 +347,7 @@ before_script:
347
347
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
348
348
  - collapseable_section_end "nodeinstall"
349
349
  - collapseable_section_start "yarninstall" "Yarn install"
350
- - yarn install --immutable
350
+ - yarn install --immutable --inline-builds
351
351
  - collapseable_section_end "yarninstall"
352
352
  - yarn lint
353
353
  cache:
@@ -391,7 +391,7 @@ before_script:
391
391
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
392
392
  - collapseable_section_end "nodeinstall"
393
393
  - collapseable_section_start "yarninstall" "Yarn install"
394
- - yarn install --immutable
394
+ - yarn install --immutable --inline-builds
395
395
  - collapseable_section_end "yarninstall"
396
396
  - yarn test
397
397
  cache:
@@ -459,7 +459,7 @@ before_script:
459
459
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
460
460
  - collapseable_section_end "nodeinstall"
461
461
  - collapseable_section_start "yarninstall" "Yarn install"
462
- - yarn install --immutable
462
+ - yarn install --immutable --inline-builds
463
463
  - collapseable_section_end "yarninstall"
464
464
  - yarn build
465
465
  cache:
@@ -560,7 +560,7 @@ before_script:
560
560
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
561
561
  - collapseable_section_end "nodeinstall"
562
562
  - collapseable_section_start "yarninstall" "Yarn install"
563
- - yarn install --immutable
563
+ - yarn install --immutable --inline-builds
564
564
  - collapseable_section_end "yarninstall"
565
565
  - yarn build
566
566
  cache:
@@ -657,7 +657,7 @@ before_script:
657
657
  - if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
658
658
  - collapseable_section_end "nodeinstall"
659
659
  - collapseable_section_start "yarninstall" "Yarn install"
660
- - yarn install --immutable
660
+ - yarn install --immutable --inline-builds
661
661
  - collapseable_section_end "yarninstall"
662
662
  - yarn build
663
663
  cache: