@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.
- package/dist/build/node/yarn.js +3 -2
- package/dist/constants.js +1 -1
- package/dist/deploy/types/googleCloudRun.d.ts +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/examples/__snapshots__/automatic-releases.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-health-check-defaults.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-health-check-only-startup.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-health-check.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-http2.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-memory-limit.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-meteor-with-worker.test.ts.snap +8 -8
- package/examples/__snapshots__/cloud-run-nextjs.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-no-cpu-throttling.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-no-service.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-non-public.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-post-stop-job.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-service-custom-vpc-connector.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-service-custom-vpc.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-service-gen2.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-service-increase-timout.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-service-with-volumes.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-storybook.test.ts.snap +12 -8
- package/examples/__snapshots__/cloud-run-with-agents.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-with-gpu.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-with-ngnix.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-with-sql-legacy-jobs.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-with-sql-multiple-dbs.test.ts.snap +48 -36
- package/examples/__snapshots__/cloud-run-with-sql-reuse-db.test.ts.snap +32 -24
- package/examples/__snapshots__/cloud-run-with-sql.test.ts.snap +16 -12
- package/examples/__snapshots__/cloud-run-with-worker.test.ts.snap +16 -12
- package/examples/__snapshots__/custom-deploy.test.ts.snap +16 -12
- package/examples/__snapshots__/custom-envs.test.ts.snap +14 -14
- package/examples/__snapshots__/custom-verify-job.test.ts.snap +16 -12
- package/examples/__snapshots__/git-submodule.test.ts.snap +16 -12
- package/examples/__snapshots__/kubernetes-application-customization.test.ts.snap +16 -12
- package/examples/__snapshots__/kubernetes-with-cloud-sql.test.ts.snap +16 -12
- package/examples/__snapshots__/kubernetes-with-jobs.test.ts.snap +32 -24
- package/examples/__snapshots__/kubernetes-with-mongodb.test.ts.snap +16 -12
- package/examples/__snapshots__/local-dot-env.test.ts.snap +16 -12
- package/examples/__snapshots__/meteor-kubernetes.test.ts.snap +8 -8
- package/examples/__snapshots__/modify-generated-files.test.ts.snap +8 -8
- package/examples/__snapshots__/modify-generated-yaml.test.ts.snap +8 -8
- package/examples/__snapshots__/multiline-var.test.ts.snap +48 -36
- package/examples/__snapshots__/native-app.test.ts.snap +24 -20
- package/examples/__snapshots__/node-build-with-custom-image.test.ts.snap +16 -12
- package/examples/__snapshots__/node-build-with-docker-additions.test.ts.snap +16 -12
- package/examples/__snapshots__/override-secrets.test.ts.snap +16 -12
- package/examples/__snapshots__/referencing-other-vars.test.ts.snap +48 -36
- package/examples/__snapshots__/wait-for-other-deploy.test.ts.snap +16 -16
- package/examples/__snapshots__/workspace-api-www-turbo-cache.test.ts.snap +24 -16
- package/examples/__snapshots__/workspace-api-www.test.ts.snap +24 -16
- package/package.json +1 -1
- package/src/build/node/yarn.ts +3 -2
- 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:
|
|
@@ -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:
|
|
@@ -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:
|
|
@@ -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:
|
|
@@ -284,7 +284,7 @@ before_script:
|
|
|
284
284
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
285
285
|
- collapseable_section_end "nodeinstall"
|
|
286
286
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
287
|
-
- yarn install --immutable
|
|
287
|
+
- yarn install --immutable --inline-builds
|
|
288
288
|
- collapseable_section_end "yarninstall"
|
|
289
289
|
- yarn build
|
|
290
290
|
cache:
|
|
@@ -339,7 +339,8 @@ before_script:
|
|
|
339
339
|
- export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app1"
|
|
340
340
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
341
341
|
- |-
|
|
342
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
342
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
343
|
+
COPY --chown=node:node $APP_DIR .
|
|
343
344
|
RUN yarn plugin import workspace-tools
|
|
344
345
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
345
346
|
- |-
|
|
@@ -608,7 +609,7 @@ before_script:
|
|
|
608
609
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
609
610
|
- collapseable_section_end "nodeinstall"
|
|
610
611
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
611
|
-
- yarn install --immutable
|
|
612
|
+
- yarn install --immutable --inline-builds
|
|
612
613
|
- collapseable_section_end "yarninstall"
|
|
613
614
|
- yarn lint
|
|
614
615
|
cache:
|
|
@@ -652,7 +653,7 @@ before_script:
|
|
|
652
653
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
653
654
|
- collapseable_section_end "nodeinstall"
|
|
654
655
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
655
|
-
- yarn install --immutable
|
|
656
|
+
- yarn install --immutable --inline-builds
|
|
656
657
|
- collapseable_section_end "yarninstall"
|
|
657
658
|
- yarn test
|
|
658
659
|
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_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app1"
|
|
811
812
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
812
813
|
- |-
|
|
813
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
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
|
- |-
|
|
@@ -1121,7 +1123,7 @@ before_script:
|
|
|
1121
1123
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1122
1124
|
- collapseable_section_end "nodeinstall"
|
|
1123
1125
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1124
|
-
- yarn install --immutable
|
|
1126
|
+
- yarn install --immutable --inline-builds
|
|
1125
1127
|
- collapseable_section_end "yarninstall"
|
|
1126
1128
|
- yarn build
|
|
1127
1129
|
cache:
|
|
@@ -1176,7 +1178,8 @@ before_script:
|
|
|
1176
1178
|
- export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app1"
|
|
1177
1179
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1178
1180
|
- |-
|
|
1179
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1181
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1182
|
+
COPY --chown=node:node $APP_DIR .
|
|
1180
1183
|
RUN yarn plugin import workspace-tools
|
|
1181
1184
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1182
1185
|
- |-
|
|
@@ -1472,7 +1475,7 @@ before_script:
|
|
|
1472
1475
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1473
1476
|
- collapseable_section_end "nodeinstall"
|
|
1474
1477
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1475
|
-
- yarn install --immutable
|
|
1478
|
+
- yarn install --immutable --inline-builds
|
|
1476
1479
|
- collapseable_section_end "yarninstall"
|
|
1477
1480
|
- yarn build
|
|
1478
1481
|
cache:
|
|
@@ -1527,7 +1530,8 @@ before_script:
|
|
|
1527
1530
|
- export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app1"
|
|
1528
1531
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1529
1532
|
- |-
|
|
1530
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1533
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1534
|
+
COPY --chown=node:node $APP_DIR .
|
|
1531
1535
|
RUN yarn plugin import workspace-tools
|
|
1532
1536
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1533
1537
|
- |-
|
|
@@ -1789,7 +1793,7 @@ before_script:
|
|
|
1789
1793
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1790
1794
|
- collapseable_section_end "nodeinstall"
|
|
1791
1795
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1792
|
-
- yarn install --immutable
|
|
1796
|
+
- yarn install --immutable --inline-builds
|
|
1793
1797
|
- collapseable_section_end "yarninstall"
|
|
1794
1798
|
- yarn lint
|
|
1795
1799
|
cache:
|
|
@@ -1829,7 +1833,7 @@ before_script:
|
|
|
1829
1833
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1830
1834
|
- collapseable_section_end "nodeinstall"
|
|
1831
1835
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1832
|
-
- yarn install --immutable
|
|
1836
|
+
- yarn install --immutable --inline-builds
|
|
1833
1837
|
- collapseable_section_end "yarninstall"
|
|
1834
1838
|
- yarn test
|
|
1835
1839
|
cache:
|
|
@@ -1934,7 +1938,7 @@ before_script:
|
|
|
1934
1938
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1935
1939
|
- collapseable_section_end "nodeinstall"
|
|
1936
1940
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1937
|
-
- yarn install --immutable
|
|
1941
|
+
- yarn install --immutable --inline-builds
|
|
1938
1942
|
- collapseable_section_end "yarninstall"
|
|
1939
1943
|
- yarn build
|
|
1940
1944
|
cache:
|
|
@@ -1989,7 +1993,8 @@ before_script:
|
|
|
1989
1993
|
- export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app2"
|
|
1990
1994
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1991
1995
|
- |-
|
|
1992
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1996
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1997
|
+
COPY --chown=node:node $APP_DIR .
|
|
1993
1998
|
RUN yarn plugin import workspace-tools
|
|
1994
1999
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1995
2000
|
- |-
|
|
@@ -2268,7 +2273,7 @@ before_script:
|
|
|
2268
2273
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
2269
2274
|
- collapseable_section_end "nodeinstall"
|
|
2270
2275
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
2271
|
-
- yarn install --immutable
|
|
2276
|
+
- yarn install --immutable --inline-builds
|
|
2272
2277
|
- collapseable_section_end "yarninstall"
|
|
2273
2278
|
- yarn lint
|
|
2274
2279
|
cache:
|
|
@@ -2312,7 +2317,7 @@ before_script:
|
|
|
2312
2317
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
2313
2318
|
- collapseable_section_end "nodeinstall"
|
|
2314
2319
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
2315
|
-
- yarn install --immutable
|
|
2320
|
+
- yarn install --immutable --inline-builds
|
|
2316
2321
|
- collapseable_section_end "yarninstall"
|
|
2317
2322
|
- yarn test
|
|
2318
2323
|
cache:
|
|
@@ -2421,7 +2426,7 @@ before_script:
|
|
|
2421
2426
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
2422
2427
|
- collapseable_section_end "nodeinstall"
|
|
2423
2428
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
2424
|
-
- yarn install --immutable
|
|
2429
|
+
- yarn install --immutable --inline-builds
|
|
2425
2430
|
- collapseable_section_end "yarninstall"
|
|
2426
2431
|
- yarn build
|
|
2427
2432
|
cache:
|
|
@@ -2480,7 +2485,8 @@ before_script:
|
|
|
2480
2485
|
- export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app2"
|
|
2481
2486
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
2482
2487
|
- |-
|
|
2483
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
2488
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
2489
|
+
COPY --chown=node:node $APP_DIR .
|
|
2484
2490
|
RUN yarn plugin import workspace-tools
|
|
2485
2491
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
2486
2492
|
- |-
|
|
@@ -2811,7 +2817,7 @@ before_script:
|
|
|
2811
2817
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
2812
2818
|
- collapseable_section_end "nodeinstall"
|
|
2813
2819
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
2814
|
-
- yarn install --immutable
|
|
2820
|
+
- yarn install --immutable --inline-builds
|
|
2815
2821
|
- collapseable_section_end "yarninstall"
|
|
2816
2822
|
- yarn build
|
|
2817
2823
|
cache:
|
|
@@ -2866,7 +2872,8 @@ before_script:
|
|
|
2866
2872
|
- export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app2"
|
|
2867
2873
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
2868
2874
|
- |-
|
|
2869
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
2875
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
2876
|
+
COPY --chown=node:node $APP_DIR .
|
|
2870
2877
|
RUN yarn plugin import workspace-tools
|
|
2871
2878
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
2872
2879
|
- |-
|
|
@@ -3182,7 +3189,7 @@ before_script:
|
|
|
3182
3189
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
3183
3190
|
- collapseable_section_end "nodeinstall"
|
|
3184
3191
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
3185
|
-
- yarn install --immutable
|
|
3192
|
+
- yarn install --immutable --inline-builds
|
|
3186
3193
|
- collapseable_section_end "yarninstall"
|
|
3187
3194
|
- yarn build
|
|
3188
3195
|
cache:
|
|
@@ -3237,7 +3244,8 @@ before_script:
|
|
|
3237
3244
|
- export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/app2"
|
|
3238
3245
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
3239
3246
|
- |-
|
|
3240
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
3247
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
3248
|
+
COPY --chown=node:node $APP_DIR .
|
|
3241
3249
|
RUN yarn plugin import workspace-tools
|
|
3242
3250
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
3243
3251
|
- |-
|
|
@@ -3509,7 +3517,7 @@ before_script:
|
|
|
3509
3517
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
3510
3518
|
- collapseable_section_end "nodeinstall"
|
|
3511
3519
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
3512
|
-
- yarn install --immutable
|
|
3520
|
+
- yarn install --immutable --inline-builds
|
|
3513
3521
|
- collapseable_section_end "yarninstall"
|
|
3514
3522
|
- yarn lint
|
|
3515
3523
|
cache:
|
|
@@ -3549,7 +3557,7 @@ before_script:
|
|
|
3549
3557
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
3550
3558
|
- collapseable_section_end "nodeinstall"
|
|
3551
3559
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
3552
|
-
- yarn install --immutable
|
|
3560
|
+
- yarn install --immutable --inline-builds
|
|
3553
3561
|
- collapseable_section_end "yarninstall"
|
|
3554
3562
|
- yarn test
|
|
3555
3563
|
cache:
|
|
@@ -3689,7 +3697,7 @@ before_script:
|
|
|
3689
3697
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
3690
3698
|
- collapseable_section_end "nodeinstall"
|
|
3691
3699
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
3692
|
-
- yarn install --immutable
|
|
3700
|
+
- yarn install --immutable --inline-builds
|
|
3693
3701
|
- collapseable_section_end "yarninstall"
|
|
3694
3702
|
- yarn build
|
|
3695
3703
|
cache:
|
|
@@ -3745,7 +3753,8 @@ before_script:
|
|
|
3745
3753
|
- export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
|
|
3746
3754
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
3747
3755
|
- |-
|
|
3748
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
3756
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
3757
|
+
COPY --chown=node:node $APP_DIR .
|
|
3749
3758
|
RUN yarn plugin import workspace-tools
|
|
3750
3759
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
3751
3760
|
- |-
|
|
@@ -4214,7 +4223,7 @@ before_script:
|
|
|
4214
4223
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
4215
4224
|
- collapseable_section_end "nodeinstall"
|
|
4216
4225
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
4217
|
-
- yarn install --immutable
|
|
4226
|
+
- yarn install --immutable --inline-builds
|
|
4218
4227
|
- collapseable_section_end "yarninstall"
|
|
4219
4228
|
- yarn lint
|
|
4220
4229
|
cache:
|
|
@@ -4258,7 +4267,7 @@ before_script:
|
|
|
4258
4267
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
4259
4268
|
- collapseable_section_end "nodeinstall"
|
|
4260
4269
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
4261
|
-
- yarn install --immutable
|
|
4270
|
+
- yarn install --immutable --inline-builds
|
|
4262
4271
|
- collapseable_section_end "yarninstall"
|
|
4263
4272
|
- yarn test
|
|
4264
4273
|
cache:
|
|
@@ -4402,7 +4411,7 @@ before_script:
|
|
|
4402
4411
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
4403
4412
|
- collapseable_section_end "nodeinstall"
|
|
4404
4413
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
4405
|
-
- yarn install --immutable
|
|
4414
|
+
- yarn install --immutable --inline-builds
|
|
4406
4415
|
- collapseable_section_end "yarninstall"
|
|
4407
4416
|
- yarn build
|
|
4408
4417
|
cache:
|
|
@@ -4462,7 +4471,8 @@ before_script:
|
|
|
4462
4471
|
- export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
|
|
4463
4472
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
4464
4473
|
- |-
|
|
4465
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
4474
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
4475
|
+
COPY --chown=node:node $APP_DIR .
|
|
4466
4476
|
RUN yarn plugin import workspace-tools
|
|
4467
4477
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
4468
4478
|
- |-
|
|
@@ -5013,7 +5023,7 @@ before_script:
|
|
|
5013
5023
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
5014
5024
|
- collapseable_section_end "nodeinstall"
|
|
5015
5025
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
5016
|
-
- yarn install --immutable
|
|
5026
|
+
- yarn install --immutable --inline-builds
|
|
5017
5027
|
- collapseable_section_end "yarninstall"
|
|
5018
5028
|
- yarn build
|
|
5019
5029
|
cache:
|
|
@@ -5069,7 +5079,8 @@ before_script:
|
|
|
5069
5079
|
- export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
|
|
5070
5080
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
5071
5081
|
- |-
|
|
5072
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
5082
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
5083
|
+
COPY --chown=node:node $APP_DIR .
|
|
5073
5084
|
RUN yarn plugin import workspace-tools
|
|
5074
5085
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
5075
5086
|
- |-
|
|
@@ -5610,7 +5621,7 @@ before_script:
|
|
|
5610
5621
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
5611
5622
|
- collapseable_section_end "nodeinstall"
|
|
5612
5623
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
5613
|
-
- yarn install --immutable
|
|
5624
|
+
- yarn install --immutable --inline-builds
|
|
5614
5625
|
- collapseable_section_end "yarninstall"
|
|
5615
5626
|
- yarn build
|
|
5616
5627
|
cache:
|
|
@@ -5666,7 +5677,8 @@ before_script:
|
|
|
5666
5677
|
- export DOCKER_IMAGE="$CI_REGISTRY_IMAGE/$DOCKER_IMAGE_NAME"
|
|
5667
5678
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
5668
5679
|
- |-
|
|
5669
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
5680
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
5681
|
+
COPY --chown=node:node $APP_DIR .
|
|
5670
5682
|
RUN yarn plugin import workspace-tools
|
|
5671
5683
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
5672
5684
|
- |-
|
|
@@ -153,7 +153,7 @@ before_script:
|
|
|
153
153
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
154
154
|
- collapseable_section_end "nodeinstall"
|
|
155
155
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
156
|
-
- yarn install --immutable
|
|
156
|
+
- yarn install --immutable --inline-builds
|
|
157
157
|
- collapseable_section_end "yarninstall"
|
|
158
158
|
- yarn lint
|
|
159
159
|
cache:
|
|
@@ -195,7 +195,7 @@ before_script:
|
|
|
195
195
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
196
196
|
- collapseable_section_end "nodeinstall"
|
|
197
197
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
198
|
-
- yarn install --immutable
|
|
198
|
+
- yarn install --immutable --inline-builds
|
|
199
199
|
- collapseable_section_end "yarninstall"
|
|
200
200
|
- yarn test
|
|
201
201
|
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
|
- bundle config set --local path 'vendor/ruby'
|
|
277
277
|
- gem install bundler
|
|
@@ -448,7 +448,7 @@ before_script:
|
|
|
448
448
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
449
449
|
- collapseable_section_end "nodeinstall"
|
|
450
450
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
451
|
-
- yarn install --immutable
|
|
451
|
+
- yarn install --immutable --inline-builds
|
|
452
452
|
- collapseable_section_end "yarninstall"
|
|
453
453
|
- yarn lint
|
|
454
454
|
cache:
|
|
@@ -494,7 +494,7 @@ before_script:
|
|
|
494
494
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
495
495
|
- collapseable_section_end "nodeinstall"
|
|
496
496
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
497
|
-
- yarn install --immutable
|
|
497
|
+
- yarn install --immutable --inline-builds
|
|
498
498
|
- collapseable_section_end "yarninstall"
|
|
499
499
|
- yarn test
|
|
500
500
|
cache:
|
|
@@ -574,7 +574,7 @@ before_script:
|
|
|
574
574
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
575
575
|
- collapseable_section_end "nodeinstall"
|
|
576
576
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
577
|
-
- yarn install --immutable
|
|
577
|
+
- yarn install --immutable --inline-builds
|
|
578
578
|
- collapseable_section_end "yarninstall"
|
|
579
579
|
- bundle config set --local path 'vendor/ruby'
|
|
580
580
|
- gem install bundler
|
|
@@ -766,7 +766,7 @@ before_script:
|
|
|
766
766
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
767
767
|
- collapseable_section_end "nodeinstall"
|
|
768
768
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
769
|
-
- yarn install --immutable
|
|
769
|
+
- yarn install --immutable --inline-builds
|
|
770
770
|
- collapseable_section_end "yarninstall"
|
|
771
771
|
- bundle config set --local path 'vendor/ruby'
|
|
772
772
|
- gem install bundler
|
|
@@ -948,7 +948,7 @@ before_script:
|
|
|
948
948
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
949
949
|
- collapseable_section_end "nodeinstall"
|
|
950
950
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
951
|
-
- yarn install --immutable
|
|
951
|
+
- yarn install --immutable --inline-builds
|
|
952
952
|
- collapseable_section_end "yarninstall"
|
|
953
953
|
- bundle config set --local path 'vendor/ruby'
|
|
954
954
|
- gem install bundler
|
|
@@ -1115,7 +1115,7 @@ before_script:
|
|
|
1115
1115
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1116
1116
|
- collapseable_section_end "nodeinstall"
|
|
1117
1117
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1118
|
-
- yarn install --immutable
|
|
1118
|
+
- yarn install --immutable --inline-builds
|
|
1119
1119
|
- collapseable_section_end "yarninstall"
|
|
1120
1120
|
- yarn lint
|
|
1121
1121
|
cache:
|
|
@@ -1155,7 +1155,7 @@ before_script:
|
|
|
1155
1155
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1156
1156
|
- collapseable_section_end "nodeinstall"
|
|
1157
1157
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1158
|
-
- yarn install --immutable
|
|
1158
|
+
- yarn install --immutable --inline-builds
|
|
1159
1159
|
- collapseable_section_end "yarninstall"
|
|
1160
1160
|
- yarn test
|
|
1161
1161
|
cache:
|
|
@@ -1227,7 +1227,7 @@ before_script:
|
|
|
1227
1227
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1228
1228
|
- collapseable_section_end "nodeinstall"
|
|
1229
1229
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1230
|
-
- yarn install --immutable
|
|
1230
|
+
- yarn install --immutable --inline-builds
|
|
1231
1231
|
- collapseable_section_end "yarninstall"
|
|
1232
1232
|
- yarn build
|
|
1233
1233
|
cache:
|
|
@@ -1282,7 +1282,8 @@ before_script:
|
|
|
1282
1282
|
- export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/api"
|
|
1283
1283
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1284
1284
|
- |-
|
|
1285
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1285
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1286
|
+
COPY --chown=node:node $APP_DIR .
|
|
1286
1287
|
RUN yarn plugin import workspace-tools
|
|
1287
1288
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1288
1289
|
- |-
|
|
@@ -1526,7 +1527,7 @@ before_script:
|
|
|
1526
1527
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1527
1528
|
- collapseable_section_end "nodeinstall"
|
|
1528
1529
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1529
|
-
- yarn install --immutable
|
|
1530
|
+
- yarn install --immutable --inline-builds
|
|
1530
1531
|
- collapseable_section_end "yarninstall"
|
|
1531
1532
|
- yarn lint
|
|
1532
1533
|
cache:
|
|
@@ -1570,7 +1571,7 @@ before_script:
|
|
|
1570
1571
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1571
1572
|
- collapseable_section_end "nodeinstall"
|
|
1572
1573
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1573
|
-
- yarn install --immutable
|
|
1574
|
+
- yarn install --immutable --inline-builds
|
|
1574
1575
|
- collapseable_section_end "yarninstall"
|
|
1575
1576
|
- yarn test
|
|
1576
1577
|
cache:
|
|
@@ -1646,7 +1647,7 @@ before_script:
|
|
|
1646
1647
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1647
1648
|
- collapseable_section_end "nodeinstall"
|
|
1648
1649
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1649
|
-
- yarn install --immutable
|
|
1650
|
+
- yarn install --immutable --inline-builds
|
|
1650
1651
|
- collapseable_section_end "yarninstall"
|
|
1651
1652
|
- yarn build
|
|
1652
1653
|
cache:
|
|
@@ -1705,7 +1706,8 @@ before_script:
|
|
|
1705
1706
|
- export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/api"
|
|
1706
1707
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1707
1708
|
- |-
|
|
1708
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1709
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1710
|
+
COPY --chown=node:node $APP_DIR .
|
|
1709
1711
|
RUN yarn plugin import workspace-tools
|
|
1710
1712
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1711
1713
|
- |-
|
|
@@ -1968,7 +1970,7 @@ before_script:
|
|
|
1968
1970
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1969
1971
|
- collapseable_section_end "nodeinstall"
|
|
1970
1972
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1971
|
-
- yarn install --immutable
|
|
1973
|
+
- yarn install --immutable --inline-builds
|
|
1972
1974
|
- collapseable_section_end "yarninstall"
|
|
1973
1975
|
- yarn build
|
|
1974
1976
|
cache:
|
|
@@ -2023,7 +2025,8 @@ before_script:
|
|
|
2023
2025
|
- export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/api"
|
|
2024
2026
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
2025
2027
|
- |-
|
|
2026
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
2028
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
2029
|
+
COPY --chown=node:node $APP_DIR .
|
|
2027
2030
|
RUN yarn plugin import workspace-tools
|
|
2028
2031
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
2029
2032
|
- |-
|
|
@@ -2271,7 +2274,7 @@ before_script:
|
|
|
2271
2274
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
2272
2275
|
- collapseable_section_end "nodeinstall"
|
|
2273
2276
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
2274
|
-
- yarn install --immutable
|
|
2277
|
+
- yarn install --immutable --inline-builds
|
|
2275
2278
|
- collapseable_section_end "yarninstall"
|
|
2276
2279
|
- yarn build
|
|
2277
2280
|
cache:
|
|
@@ -2326,7 +2329,8 @@ before_script:
|
|
|
2326
2329
|
- export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/api"
|
|
2327
2330
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
2328
2331
|
- |-
|
|
2329
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
2332
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
2333
|
+
COPY --chown=node:node $APP_DIR .
|
|
2330
2334
|
RUN yarn plugin import workspace-tools
|
|
2331
2335
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
2332
2336
|
- |-
|