@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:
|
|
@@ -275,7 +275,7 @@ before_script:
|
|
|
275
275
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
276
276
|
- collapseable_section_end "nodeinstall"
|
|
277
277
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
278
|
-
- yarn install --immutable
|
|
278
|
+
- yarn install --immutable --inline-builds
|
|
279
279
|
- collapseable_section_end "yarninstall"
|
|
280
280
|
- yarn build
|
|
281
281
|
cache:
|
|
@@ -330,7 +330,8 @@ before_script:
|
|
|
330
330
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/db1"
|
|
331
331
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
332
332
|
- |-
|
|
333
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
333
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
334
|
+
COPY --chown=node:node $APP_DIR .
|
|
334
335
|
RUN yarn plugin import workspace-tools
|
|
335
336
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
336
337
|
- |-
|
|
@@ -610,7 +611,7 @@ before_script:
|
|
|
610
611
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
611
612
|
- collapseable_section_end "nodeinstall"
|
|
612
613
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
613
|
-
- yarn install --immutable
|
|
614
|
+
- yarn install --immutable --inline-builds
|
|
614
615
|
- collapseable_section_end "yarninstall"
|
|
615
616
|
- yarn lint
|
|
616
617
|
cache:
|
|
@@ -654,7 +655,7 @@ before_script:
|
|
|
654
655
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
655
656
|
- collapseable_section_end "nodeinstall"
|
|
656
657
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
657
|
-
- yarn install --immutable
|
|
658
|
+
- yarn install --immutable --inline-builds
|
|
658
659
|
- collapseable_section_end "yarninstall"
|
|
659
660
|
- yarn test
|
|
660
661
|
cache:
|
|
@@ -744,7 +745,7 @@ before_script:
|
|
|
744
745
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
745
746
|
- collapseable_section_end "nodeinstall"
|
|
746
747
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
747
|
-
- yarn install --immutable
|
|
748
|
+
- yarn install --immutable --inline-builds
|
|
748
749
|
- collapseable_section_end "yarninstall"
|
|
749
750
|
- yarn build
|
|
750
751
|
cache:
|
|
@@ -803,7 +804,8 @@ before_script:
|
|
|
803
804
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/db1"
|
|
804
805
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
805
806
|
- |-
|
|
806
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
807
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
808
|
+
COPY --chown=node:node $APP_DIR .
|
|
807
809
|
RUN yarn plugin import workspace-tools
|
|
808
810
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
809
811
|
- |-
|
|
@@ -1119,7 +1121,7 @@ before_script:
|
|
|
1119
1121
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1120
1122
|
- collapseable_section_end "nodeinstall"
|
|
1121
1123
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1122
|
-
- yarn install --immutable
|
|
1124
|
+
- yarn install --immutable --inline-builds
|
|
1123
1125
|
- collapseable_section_end "yarninstall"
|
|
1124
1126
|
- yarn build
|
|
1125
1127
|
cache:
|
|
@@ -1174,7 +1176,8 @@ before_script:
|
|
|
1174
1176
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/db1"
|
|
1175
1177
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1176
1178
|
- |-
|
|
1177
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1179
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1180
|
+
COPY --chown=node:node $APP_DIR .
|
|
1178
1181
|
RUN yarn plugin import workspace-tools
|
|
1179
1182
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1180
1183
|
- |-
|
|
@@ -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="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/db1"
|
|
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
|
- |-
|
|
@@ -1800,7 +1804,7 @@ before_script:
|
|
|
1800
1804
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1801
1805
|
- collapseable_section_end "nodeinstall"
|
|
1802
1806
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1803
|
-
- yarn install --immutable
|
|
1807
|
+
- yarn install --immutable --inline-builds
|
|
1804
1808
|
- collapseable_section_end "yarninstall"
|
|
1805
1809
|
- yarn lint
|
|
1806
1810
|
cache:
|
|
@@ -1840,7 +1844,7 @@ before_script:
|
|
|
1840
1844
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1841
1845
|
- collapseable_section_end "nodeinstall"
|
|
1842
1846
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1843
|
-
- yarn install --immutable
|
|
1847
|
+
- yarn install --immutable --inline-builds
|
|
1844
1848
|
- collapseable_section_end "yarninstall"
|
|
1845
1849
|
- yarn test
|
|
1846
1850
|
cache:
|
|
@@ -1926,7 +1930,7 @@ before_script:
|
|
|
1926
1930
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1927
1931
|
- collapseable_section_end "nodeinstall"
|
|
1928
1932
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1929
|
-
- yarn install --immutable
|
|
1933
|
+
- yarn install --immutable --inline-builds
|
|
1930
1934
|
- collapseable_section_end "yarninstall"
|
|
1931
1935
|
- yarn build
|
|
1932
1936
|
cache:
|
|
@@ -1981,7 +1985,8 @@ before_script:
|
|
|
1981
1985
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/db2"
|
|
1982
1986
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1983
1987
|
- |-
|
|
1984
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1988
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1989
|
+
COPY --chown=node:node $APP_DIR .
|
|
1985
1990
|
RUN yarn plugin import workspace-tools
|
|
1986
1991
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1987
1992
|
- |-
|
|
@@ -2261,7 +2266,7 @@ before_script:
|
|
|
2261
2266
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
2262
2267
|
- collapseable_section_end "nodeinstall"
|
|
2263
2268
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
2264
|
-
- yarn install --immutable
|
|
2269
|
+
- yarn install --immutable --inline-builds
|
|
2265
2270
|
- collapseable_section_end "yarninstall"
|
|
2266
2271
|
- yarn lint
|
|
2267
2272
|
cache:
|
|
@@ -2305,7 +2310,7 @@ before_script:
|
|
|
2305
2310
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
2306
2311
|
- collapseable_section_end "nodeinstall"
|
|
2307
2312
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
2308
|
-
- yarn install --immutable
|
|
2313
|
+
- yarn install --immutable --inline-builds
|
|
2309
2314
|
- collapseable_section_end "yarninstall"
|
|
2310
2315
|
- yarn test
|
|
2311
2316
|
cache:
|
|
@@ -2395,7 +2400,7 @@ before_script:
|
|
|
2395
2400
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
2396
2401
|
- collapseable_section_end "nodeinstall"
|
|
2397
2402
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
2398
|
-
- yarn install --immutable
|
|
2403
|
+
- yarn install --immutable --inline-builds
|
|
2399
2404
|
- collapseable_section_end "yarninstall"
|
|
2400
2405
|
- yarn build
|
|
2401
2406
|
cache:
|
|
@@ -2454,7 +2459,8 @@ before_script:
|
|
|
2454
2459
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/db2"
|
|
2455
2460
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
2456
2461
|
- |-
|
|
2457
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
2462
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
2463
|
+
COPY --chown=node:node $APP_DIR .
|
|
2458
2464
|
RUN yarn plugin import workspace-tools
|
|
2459
2465
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
2460
2466
|
- |-
|
|
@@ -2770,7 +2776,7 @@ before_script:
|
|
|
2770
2776
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
2771
2777
|
- collapseable_section_end "nodeinstall"
|
|
2772
2778
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
2773
|
-
- yarn install --immutable
|
|
2779
|
+
- yarn install --immutable --inline-builds
|
|
2774
2780
|
- collapseable_section_end "yarninstall"
|
|
2775
2781
|
- yarn build
|
|
2776
2782
|
cache:
|
|
@@ -2825,7 +2831,8 @@ before_script:
|
|
|
2825
2831
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/db2"
|
|
2826
2832
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
2827
2833
|
- |-
|
|
2828
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
2834
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
2835
|
+
COPY --chown=node:node $APP_DIR .
|
|
2829
2836
|
RUN yarn plugin import workspace-tools
|
|
2830
2837
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
2831
2838
|
- |-
|
|
@@ -3123,7 +3130,7 @@ before_script:
|
|
|
3123
3130
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
3124
3131
|
- collapseable_section_end "nodeinstall"
|
|
3125
3132
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
3126
|
-
- yarn install --immutable
|
|
3133
|
+
- yarn install --immutable --inline-builds
|
|
3127
3134
|
- collapseable_section_end "yarninstall"
|
|
3128
3135
|
- yarn build
|
|
3129
3136
|
cache:
|
|
@@ -3178,7 +3185,8 @@ before_script:
|
|
|
3178
3185
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/db2"
|
|
3179
3186
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
3180
3187
|
- |-
|
|
3181
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
3188
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
3189
|
+
COPY --chown=node:node $APP_DIR .
|
|
3182
3190
|
RUN yarn plugin import workspace-tools
|
|
3183
3191
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
3184
3192
|
- |-
|
|
@@ -3451,7 +3459,7 @@ before_script:
|
|
|
3451
3459
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
3452
3460
|
- collapseable_section_end "nodeinstall"
|
|
3453
3461
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
3454
|
-
- yarn install --immutable
|
|
3462
|
+
- yarn install --immutable --inline-builds
|
|
3455
3463
|
- collapseable_section_end "yarninstall"
|
|
3456
3464
|
- yarn lint
|
|
3457
3465
|
cache:
|
|
@@ -3491,7 +3499,7 @@ before_script:
|
|
|
3491
3499
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
3492
3500
|
- collapseable_section_end "nodeinstall"
|
|
3493
3501
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
3494
|
-
- yarn install --immutable
|
|
3502
|
+
- yarn install --immutable --inline-builds
|
|
3495
3503
|
- collapseable_section_end "yarninstall"
|
|
3496
3504
|
- yarn test
|
|
3497
3505
|
cache:
|
|
@@ -3577,7 +3585,7 @@ before_script:
|
|
|
3577
3585
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
3578
3586
|
- collapseable_section_end "nodeinstall"
|
|
3579
3587
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
3580
|
-
- yarn install --immutable
|
|
3588
|
+
- yarn install --immutable --inline-builds
|
|
3581
3589
|
- collapseable_section_end "yarninstall"
|
|
3582
3590
|
- yarn build:worker
|
|
3583
3591
|
cache:
|
|
@@ -3632,7 +3640,8 @@ before_script:
|
|
|
3632
3640
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
3633
3641
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
3634
3642
|
- |-
|
|
3635
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
3643
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
3644
|
+
COPY --chown=node:node $APP_DIR .
|
|
3636
3645
|
RUN yarn plugin import workspace-tools
|
|
3637
3646
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
3638
3647
|
- |-
|
|
@@ -3901,7 +3910,7 @@ before_script:
|
|
|
3901
3910
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
3902
3911
|
- collapseable_section_end "nodeinstall"
|
|
3903
3912
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
3904
|
-
- yarn install --immutable
|
|
3913
|
+
- yarn install --immutable --inline-builds
|
|
3905
3914
|
- collapseable_section_end "yarninstall"
|
|
3906
3915
|
- yarn lint
|
|
3907
3916
|
cache:
|
|
@@ -3945,7 +3954,7 @@ before_script:
|
|
|
3945
3954
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
3946
3955
|
- collapseable_section_end "nodeinstall"
|
|
3947
3956
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
3948
|
-
- yarn install --immutable
|
|
3957
|
+
- yarn install --immutable --inline-builds
|
|
3949
3958
|
- collapseable_section_end "yarninstall"
|
|
3950
3959
|
- yarn test
|
|
3951
3960
|
cache:
|
|
@@ -4035,7 +4044,7 @@ before_script:
|
|
|
4035
4044
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
4036
4045
|
- collapseable_section_end "nodeinstall"
|
|
4037
4046
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
4038
|
-
- yarn install --immutable
|
|
4047
|
+
- yarn install --immutable --inline-builds
|
|
4039
4048
|
- collapseable_section_end "yarninstall"
|
|
4040
4049
|
- yarn build:worker
|
|
4041
4050
|
cache:
|
|
@@ -4094,7 +4103,8 @@ before_script:
|
|
|
4094
4103
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
4095
4104
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
4096
4105
|
- |-
|
|
4097
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
4106
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
4107
|
+
COPY --chown=node:node $APP_DIR .
|
|
4098
4108
|
RUN yarn plugin import workspace-tools
|
|
4099
4109
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
4100
4110
|
- |-
|
|
@@ -4399,7 +4409,7 @@ before_script:
|
|
|
4399
4409
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
4400
4410
|
- collapseable_section_end "nodeinstall"
|
|
4401
4411
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
4402
|
-
- yarn install --immutable
|
|
4412
|
+
- yarn install --immutable --inline-builds
|
|
4403
4413
|
- collapseable_section_end "yarninstall"
|
|
4404
4414
|
- yarn build:worker
|
|
4405
4415
|
cache:
|
|
@@ -4454,7 +4464,8 @@ before_script:
|
|
|
4454
4464
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
4455
4465
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
4456
4466
|
- |-
|
|
4457
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
4467
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
4468
|
+
COPY --chown=node:node $APP_DIR .
|
|
4458
4469
|
RUN yarn plugin import workspace-tools
|
|
4459
4470
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
4460
4471
|
- |-
|
|
@@ -4741,7 +4752,7 @@ before_script:
|
|
|
4741
4752
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
4742
4753
|
- collapseable_section_end "nodeinstall"
|
|
4743
4754
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
4744
|
-
- yarn install --immutable
|
|
4755
|
+
- yarn install --immutable --inline-builds
|
|
4745
4756
|
- collapseable_section_end "yarninstall"
|
|
4746
4757
|
- yarn build:worker
|
|
4747
4758
|
cache:
|
|
@@ -4796,7 +4807,8 @@ before_script:
|
|
|
4796
4807
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
4797
4808
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
4798
4809
|
- |-
|
|
4799
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
4810
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
4811
|
+
COPY --chown=node:node $APP_DIR .
|
|
4800
4812
|
RUN yarn plugin import workspace-tools
|
|
4801
4813
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
4802
4814
|
- |-
|
|
@@ -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:
|
|
@@ -273,7 +273,7 @@ before_script:
|
|
|
273
273
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
274
274
|
- collapseable_section_end "nodeinstall"
|
|
275
275
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
276
|
-
- yarn install --immutable
|
|
276
|
+
- yarn install --immutable --inline-builds
|
|
277
277
|
- collapseable_section_end "yarninstall"
|
|
278
278
|
- yarn build
|
|
279
279
|
cache:
|
|
@@ -328,7 +328,8 @@ before_script:
|
|
|
328
328
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
329
329
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
330
330
|
- |-
|
|
331
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
331
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
332
|
+
COPY --chown=node:node $APP_DIR .
|
|
332
333
|
RUN yarn plugin import workspace-tools
|
|
333
334
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
334
335
|
- |-
|
|
@@ -594,7 +595,7 @@ before_script:
|
|
|
594
595
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
595
596
|
- collapseable_section_end "nodeinstall"
|
|
596
597
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
597
|
-
- yarn install --immutable
|
|
598
|
+
- yarn install --immutable --inline-builds
|
|
598
599
|
- collapseable_section_end "yarninstall"
|
|
599
600
|
- yarn lint
|
|
600
601
|
cache:
|
|
@@ -638,7 +639,7 @@ before_script:
|
|
|
638
639
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
639
640
|
- collapseable_section_end "nodeinstall"
|
|
640
641
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
641
|
-
- yarn install --immutable
|
|
642
|
+
- yarn install --immutable --inline-builds
|
|
642
643
|
- collapseable_section_end "yarninstall"
|
|
643
644
|
- yarn test
|
|
644
645
|
cache:
|
|
@@ -726,7 +727,7 @@ before_script:
|
|
|
726
727
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
727
728
|
- collapseable_section_end "nodeinstall"
|
|
728
729
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
729
|
-
- yarn install --immutable
|
|
730
|
+
- yarn install --immutable --inline-builds
|
|
730
731
|
- collapseable_section_end "yarninstall"
|
|
731
732
|
- yarn build
|
|
732
733
|
cache:
|
|
@@ -785,7 +786,8 @@ before_script:
|
|
|
785
786
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
786
787
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
787
788
|
- |-
|
|
788
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
789
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
790
|
+
COPY --chown=node:node $APP_DIR .
|
|
789
791
|
RUN yarn plugin import workspace-tools
|
|
790
792
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
791
793
|
- |-
|
|
@@ -1085,7 +1087,7 @@ before_script:
|
|
|
1085
1087
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1086
1088
|
- collapseable_section_end "nodeinstall"
|
|
1087
1089
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1088
|
-
- yarn install --immutable
|
|
1090
|
+
- yarn install --immutable --inline-builds
|
|
1089
1091
|
- collapseable_section_end "yarninstall"
|
|
1090
1092
|
- yarn build
|
|
1091
1093
|
cache:
|
|
@@ -1140,7 +1142,8 @@ before_script:
|
|
|
1140
1142
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
1141
1143
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1142
1144
|
- |-
|
|
1143
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1145
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1146
|
+
COPY --chown=node:node $APP_DIR .
|
|
1144
1147
|
RUN yarn plugin import workspace-tools
|
|
1145
1148
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1146
1149
|
- |-
|
|
@@ -1422,7 +1425,7 @@ before_script:
|
|
|
1422
1425
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1423
1426
|
- collapseable_section_end "nodeinstall"
|
|
1424
1427
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1425
|
-
- yarn install --immutable
|
|
1428
|
+
- yarn install --immutable --inline-builds
|
|
1426
1429
|
- collapseable_section_end "yarninstall"
|
|
1427
1430
|
- yarn build
|
|
1428
1431
|
cache:
|
|
@@ -1477,7 +1480,8 @@ before_script:
|
|
|
1477
1480
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
1478
1481
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1479
1482
|
- |-
|
|
1480
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1483
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1484
|
+
COPY --chown=node:node $APP_DIR .
|
|
1481
1485
|
RUN yarn plugin import workspace-tools
|
|
1482
1486
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1483
1487
|
- |-
|
|
@@ -1736,7 +1740,7 @@ before_script:
|
|
|
1736
1740
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1737
1741
|
- collapseable_section_end "nodeinstall"
|
|
1738
1742
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1739
|
-
- yarn install --immutable
|
|
1743
|
+
- yarn install --immutable --inline-builds
|
|
1740
1744
|
- collapseable_section_end "yarninstall"
|
|
1741
1745
|
- yarn lint
|
|
1742
1746
|
cache:
|
|
@@ -1776,7 +1780,7 @@ before_script:
|
|
|
1776
1780
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1777
1781
|
- collapseable_section_end "nodeinstall"
|
|
1778
1782
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1779
|
-
- yarn install --immutable
|
|
1783
|
+
- yarn install --immutable --inline-builds
|
|
1780
1784
|
- collapseable_section_end "yarninstall"
|
|
1781
1785
|
- yarn test
|
|
1782
1786
|
cache:
|
|
@@ -1860,7 +1864,7 @@ before_script:
|
|
|
1860
1864
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1861
1865
|
- collapseable_section_end "nodeinstall"
|
|
1862
1866
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1863
|
-
- yarn install --immutable
|
|
1867
|
+
- yarn install --immutable --inline-builds
|
|
1864
1868
|
- collapseable_section_end "yarninstall"
|
|
1865
1869
|
- yarn build:worker
|
|
1866
1870
|
cache:
|
|
@@ -1915,7 +1919,8 @@ before_script:
|
|
|
1915
1919
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/worker"
|
|
1916
1920
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1917
1921
|
- |-
|
|
1918
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1922
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1923
|
+
COPY --chown=node:node $APP_DIR .
|
|
1919
1924
|
RUN yarn plugin import workspace-tools
|
|
1920
1925
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1921
1926
|
- |-
|
|
@@ -2181,7 +2186,7 @@ before_script:
|
|
|
2181
2186
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
2182
2187
|
- collapseable_section_end "nodeinstall"
|
|
2183
2188
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
2184
|
-
- yarn install --immutable
|
|
2189
|
+
- yarn install --immutable --inline-builds
|
|
2185
2190
|
- collapseable_section_end "yarninstall"
|
|
2186
2191
|
- yarn lint
|
|
2187
2192
|
cache:
|
|
@@ -2225,7 +2230,7 @@ before_script:
|
|
|
2225
2230
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
2226
2231
|
- collapseable_section_end "nodeinstall"
|
|
2227
2232
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
2228
|
-
- yarn install --immutable
|
|
2233
|
+
- yarn install --immutable --inline-builds
|
|
2229
2234
|
- collapseable_section_end "yarninstall"
|
|
2230
2235
|
- yarn test
|
|
2231
2236
|
cache:
|
|
@@ -2313,7 +2318,7 @@ before_script:
|
|
|
2313
2318
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
2314
2319
|
- collapseable_section_end "nodeinstall"
|
|
2315
2320
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
2316
|
-
- yarn install --immutable
|
|
2321
|
+
- yarn install --immutable --inline-builds
|
|
2317
2322
|
- collapseable_section_end "yarninstall"
|
|
2318
2323
|
- yarn build:worker
|
|
2319
2324
|
cache:
|
|
@@ -2372,7 +2377,8 @@ before_script:
|
|
|
2372
2377
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/worker"
|
|
2373
2378
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
2374
2379
|
- |-
|
|
2375
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
2380
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
2381
|
+
COPY --chown=node:node $APP_DIR .
|
|
2376
2382
|
RUN yarn plugin import workspace-tools
|
|
2377
2383
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
2378
2384
|
- |-
|
|
@@ -2672,7 +2678,7 @@ before_script:
|
|
|
2672
2678
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
2673
2679
|
- collapseable_section_end "nodeinstall"
|
|
2674
2680
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
2675
|
-
- yarn install --immutable
|
|
2681
|
+
- yarn install --immutable --inline-builds
|
|
2676
2682
|
- collapseable_section_end "yarninstall"
|
|
2677
2683
|
- yarn build:worker
|
|
2678
2684
|
cache:
|
|
@@ -2727,7 +2733,8 @@ before_script:
|
|
|
2727
2733
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/worker"
|
|
2728
2734
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
2729
2735
|
- |-
|
|
2730
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
2736
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
2737
|
+
COPY --chown=node:node $APP_DIR .
|
|
2731
2738
|
RUN yarn plugin import workspace-tools
|
|
2732
2739
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
2733
2740
|
- |-
|
|
@@ -3009,7 +3016,7 @@ before_script:
|
|
|
3009
3016
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
3010
3017
|
- collapseable_section_end "nodeinstall"
|
|
3011
3018
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
3012
|
-
- yarn install --immutable
|
|
3019
|
+
- yarn install --immutable --inline-builds
|
|
3013
3020
|
- collapseable_section_end "yarninstall"
|
|
3014
3021
|
- yarn build:worker
|
|
3015
3022
|
cache:
|
|
@@ -3064,7 +3071,8 @@ before_script:
|
|
|
3064
3071
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/worker"
|
|
3065
3072
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
3066
3073
|
- |-
|
|
3067
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
3074
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
3075
|
+
COPY --chown=node:node $APP_DIR .
|
|
3068
3076
|
RUN yarn plugin import workspace-tools
|
|
3069
3077
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
3070
3078
|
- |-
|
|
@@ -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:
|
|
@@ -279,7 +279,7 @@ before_script:
|
|
|
279
279
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
280
280
|
- collapseable_section_end "nodeinstall"
|
|
281
281
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
282
|
-
- yarn install --immutable
|
|
282
|
+
- yarn install --immutable --inline-builds
|
|
283
283
|
- collapseable_section_end "yarninstall"
|
|
284
284
|
- yarn build
|
|
285
285
|
cache:
|
|
@@ -334,7 +334,8 @@ before_script:
|
|
|
334
334
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
335
335
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
336
336
|
- |-
|
|
337
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
337
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
338
|
+
COPY --chown=node:node $APP_DIR .
|
|
338
339
|
RUN yarn plugin import workspace-tools
|
|
339
340
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
340
341
|
- |-
|
|
@@ -670,7 +671,7 @@ before_script:
|
|
|
670
671
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
671
672
|
- collapseable_section_end "nodeinstall"
|
|
672
673
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
673
|
-
- yarn install --immutable
|
|
674
|
+
- yarn install --immutable --inline-builds
|
|
674
675
|
- collapseable_section_end "yarninstall"
|
|
675
676
|
- yarn lint
|
|
676
677
|
cache:
|
|
@@ -714,7 +715,7 @@ before_script:
|
|
|
714
715
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
715
716
|
- collapseable_section_end "nodeinstall"
|
|
716
717
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
717
|
-
- yarn install --immutable
|
|
718
|
+
- yarn install --immutable --inline-builds
|
|
718
719
|
- collapseable_section_end "yarninstall"
|
|
719
720
|
- yarn test
|
|
720
721
|
cache:
|
|
@@ -808,7 +809,7 @@ before_script:
|
|
|
808
809
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
809
810
|
- collapseable_section_end "nodeinstall"
|
|
810
811
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
811
|
-
- yarn install --immutable
|
|
812
|
+
- yarn install --immutable --inline-builds
|
|
812
813
|
- collapseable_section_end "yarninstall"
|
|
813
814
|
- yarn build
|
|
814
815
|
cache:
|
|
@@ -867,7 +868,8 @@ before_script:
|
|
|
867
868
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
868
869
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
869
870
|
- |-
|
|
870
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
871
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
872
|
+
COPY --chown=node:node $APP_DIR .
|
|
871
873
|
RUN yarn plugin import workspace-tools
|
|
872
874
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
873
875
|
- |-
|
|
@@ -1235,7 +1237,7 @@ before_script:
|
|
|
1235
1237
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1236
1238
|
- collapseable_section_end "nodeinstall"
|
|
1237
1239
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1238
|
-
- yarn install --immutable
|
|
1240
|
+
- yarn install --immutable --inline-builds
|
|
1239
1241
|
- collapseable_section_end "yarninstall"
|
|
1240
1242
|
- yarn build
|
|
1241
1243
|
cache:
|
|
@@ -1290,7 +1292,8 @@ before_script:
|
|
|
1290
1292
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
1291
1293
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1292
1294
|
- |-
|
|
1293
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1295
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1296
|
+
COPY --chown=node:node $APP_DIR .
|
|
1294
1297
|
RUN yarn plugin import workspace-tools
|
|
1295
1298
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1296
1299
|
- |-
|
|
@@ -1646,7 +1649,7 @@ before_script:
|
|
|
1646
1649
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1647
1650
|
- collapseable_section_end "nodeinstall"
|
|
1648
1651
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1649
|
-
- yarn install --immutable
|
|
1652
|
+
- yarn install --immutable --inline-builds
|
|
1650
1653
|
- collapseable_section_end "yarninstall"
|
|
1651
1654
|
- yarn build
|
|
1652
1655
|
cache:
|
|
@@ -1701,7 +1704,8 @@ before_script:
|
|
|
1701
1704
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
1702
1705
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1703
1706
|
- |-
|
|
1704
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1707
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1708
|
+
COPY --chown=node:node $APP_DIR .
|
|
1705
1709
|
RUN yarn plugin import workspace-tools
|
|
1706
1710
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1707
1711
|
- |-
|