@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:
|
|
@@ -261,7 +261,7 @@ before_script:
|
|
|
261
261
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
262
262
|
- collapseable_section_end "nodeinstall"
|
|
263
263
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
264
|
-
- yarn install --immutable
|
|
264
|
+
- yarn install --immutable --inline-builds
|
|
265
265
|
- collapseable_section_end "yarninstall"
|
|
266
266
|
- yarn build
|
|
267
267
|
cache:
|
|
@@ -320,7 +320,8 @@ before_script:
|
|
|
320
320
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-agent-example-app/caches/www"
|
|
321
321
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
322
322
|
- |-
|
|
323
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
323
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
324
|
+
COPY --chown=node:node $APP_DIR .
|
|
324
325
|
RUN yarn plugin import workspace-tools
|
|
325
326
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
326
327
|
- |-
|
|
@@ -564,7 +565,7 @@ before_script:
|
|
|
564
565
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
565
566
|
- collapseable_section_end "nodeinstall"
|
|
566
567
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
567
|
-
- yarn install --immutable
|
|
568
|
+
- yarn install --immutable --inline-builds
|
|
568
569
|
- collapseable_section_end "yarninstall"
|
|
569
570
|
- yarn lint
|
|
570
571
|
cache:
|
|
@@ -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 test
|
|
614
615
|
cache:
|
|
@@ -684,7 +685,7 @@ before_script:
|
|
|
684
685
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
685
686
|
- collapseable_section_end "nodeinstall"
|
|
686
687
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
687
|
-
- yarn install --immutable
|
|
688
|
+
- yarn install --immutable --inline-builds
|
|
688
689
|
- collapseable_section_end "yarninstall"
|
|
689
690
|
- yarn build
|
|
690
691
|
cache:
|
|
@@ -749,7 +750,8 @@ before_script:
|
|
|
749
750
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-agent-example-app/caches/www"
|
|
750
751
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
751
752
|
- |-
|
|
752
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
753
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
754
|
+
COPY --chown=node:node $APP_DIR .
|
|
753
755
|
RUN yarn plugin import workspace-tools
|
|
754
756
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
755
757
|
- |-
|
|
@@ -1012,7 +1014,7 @@ before_script:
|
|
|
1012
1014
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1013
1015
|
- collapseable_section_end "nodeinstall"
|
|
1014
1016
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1015
|
-
- yarn install --immutable
|
|
1017
|
+
- yarn install --immutable --inline-builds
|
|
1016
1018
|
- collapseable_section_end "yarninstall"
|
|
1017
1019
|
- yarn build
|
|
1018
1020
|
cache:
|
|
@@ -1071,7 +1073,8 @@ before_script:
|
|
|
1071
1073
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-agent-example-app/caches/www"
|
|
1072
1074
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1073
1075
|
- |-
|
|
1074
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1076
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1077
|
+
COPY --chown=node:node $APP_DIR .
|
|
1075
1078
|
RUN yarn plugin import workspace-tools
|
|
1076
1079
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1077
1080
|
- |-
|
|
@@ -1319,7 +1322,7 @@ before_script:
|
|
|
1319
1322
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1320
1323
|
- collapseable_section_end "nodeinstall"
|
|
1321
1324
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1322
|
-
- yarn install --immutable
|
|
1325
|
+
- yarn install --immutable --inline-builds
|
|
1323
1326
|
- collapseable_section_end "yarninstall"
|
|
1324
1327
|
- yarn build
|
|
1325
1328
|
cache:
|
|
@@ -1378,7 +1381,8 @@ before_script:
|
|
|
1378
1381
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-agent-example-app/caches/www"
|
|
1379
1382
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1380
1383
|
- |-
|
|
1381
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1384
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1385
|
+
COPY --chown=node:node $APP_DIR .
|
|
1382
1386
|
RUN yarn plugin import workspace-tools
|
|
1383
1387
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1384
1388
|
- |-
|
|
@@ -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:
|
|
@@ -261,7 +261,7 @@ before_script:
|
|
|
261
261
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
262
262
|
- collapseable_section_end "nodeinstall"
|
|
263
263
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
264
|
-
- yarn install --immutable
|
|
264
|
+
- yarn install --immutable --inline-builds
|
|
265
265
|
- collapseable_section_end "yarninstall"
|
|
266
266
|
- yarn build
|
|
267
267
|
cache:
|
|
@@ -316,7 +316,8 @@ before_script:
|
|
|
316
316
|
- export DOCKER_CACHE_IMAGE="europe-west4-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
317
317
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
318
318
|
- |-
|
|
319
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
319
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
320
|
+
COPY --chown=node:node $APP_DIR .
|
|
320
321
|
RUN yarn plugin import workspace-tools
|
|
321
322
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
322
323
|
- |-
|
|
@@ -560,7 +561,7 @@ before_script:
|
|
|
560
561
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
561
562
|
- collapseable_section_end "nodeinstall"
|
|
562
563
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
563
|
-
- yarn install --immutable
|
|
564
|
+
- yarn install --immutable --inline-builds
|
|
564
565
|
- collapseable_section_end "yarninstall"
|
|
565
566
|
- yarn lint
|
|
566
567
|
cache:
|
|
@@ -604,7 +605,7 @@ before_script:
|
|
|
604
605
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
605
606
|
- collapseable_section_end "nodeinstall"
|
|
606
607
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
607
|
-
- yarn install --immutable
|
|
608
|
+
- yarn install --immutable --inline-builds
|
|
608
609
|
- collapseable_section_end "yarninstall"
|
|
609
610
|
- yarn test
|
|
610
611
|
cache:
|
|
@@ -680,7 +681,7 @@ before_script:
|
|
|
680
681
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
681
682
|
- collapseable_section_end "nodeinstall"
|
|
682
683
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
683
|
-
- yarn install --immutable
|
|
684
|
+
- yarn install --immutable --inline-builds
|
|
684
685
|
- collapseable_section_end "yarninstall"
|
|
685
686
|
- yarn build
|
|
686
687
|
cache:
|
|
@@ -739,7 +740,8 @@ before_script:
|
|
|
739
740
|
- export DOCKER_CACHE_IMAGE="europe-west4-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
740
741
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
741
742
|
- |-
|
|
742
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
743
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
744
|
+
COPY --chown=node:node $APP_DIR .
|
|
743
745
|
RUN yarn plugin import workspace-tools
|
|
744
746
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
745
747
|
- |-
|
|
@@ -1002,7 +1004,7 @@ before_script:
|
|
|
1002
1004
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1003
1005
|
- collapseable_section_end "nodeinstall"
|
|
1004
1006
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1005
|
-
- yarn install --immutable
|
|
1007
|
+
- yarn install --immutable --inline-builds
|
|
1006
1008
|
- collapseable_section_end "yarninstall"
|
|
1007
1009
|
- yarn build
|
|
1008
1010
|
cache:
|
|
@@ -1057,7 +1059,8 @@ before_script:
|
|
|
1057
1059
|
- export DOCKER_CACHE_IMAGE="europe-west4-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
1058
1060
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1059
1061
|
- |-
|
|
1060
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1062
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1063
|
+
COPY --chown=node:node $APP_DIR .
|
|
1061
1064
|
RUN yarn plugin import workspace-tools
|
|
1062
1065
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1063
1066
|
- |-
|
|
@@ -1305,7 +1308,7 @@ before_script:
|
|
|
1305
1308
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1306
1309
|
- collapseable_section_end "nodeinstall"
|
|
1307
1310
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1308
|
-
- yarn install --immutable
|
|
1311
|
+
- yarn install --immutable --inline-builds
|
|
1309
1312
|
- collapseable_section_end "yarninstall"
|
|
1310
1313
|
- yarn build
|
|
1311
1314
|
cache:
|
|
@@ -1360,7 +1363,8 @@ before_script:
|
|
|
1360
1363
|
- export DOCKER_CACHE_IMAGE="europe-west4-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
1361
1364
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1362
1365
|
- |-
|
|
1363
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1366
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1367
|
+
COPY --chown=node:node $APP_DIR .
|
|
1364
1368
|
RUN yarn plugin import workspace-tools
|
|
1365
1369
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1366
1370
|
- |-
|
|
@@ -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:
|
|
@@ -261,7 +261,7 @@ before_script:
|
|
|
261
261
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
262
262
|
- collapseable_section_end "nodeinstall"
|
|
263
263
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
264
|
-
- yarn install --immutable
|
|
264
|
+
- yarn install --immutable --inline-builds
|
|
265
265
|
- collapseable_section_end "yarninstall"
|
|
266
266
|
- yarn build
|
|
267
267
|
cache:
|
|
@@ -316,7 +316,8 @@ before_script:
|
|
|
316
316
|
- export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/api"
|
|
317
317
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
318
318
|
- |-
|
|
319
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
319
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
320
|
+
COPY --chown=node:node $APP_DIR .
|
|
320
321
|
RUN yarn plugin import workspace-tools
|
|
321
322
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
322
323
|
- |-
|
|
@@ -560,7 +561,7 @@ before_script:
|
|
|
560
561
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
561
562
|
- collapseable_section_end "nodeinstall"
|
|
562
563
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
563
|
-
- yarn install --immutable
|
|
564
|
+
- yarn install --immutable --inline-builds
|
|
564
565
|
- collapseable_section_end "yarninstall"
|
|
565
566
|
- yarn lint
|
|
566
567
|
cache:
|
|
@@ -604,7 +605,7 @@ before_script:
|
|
|
604
605
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
605
606
|
- collapseable_section_end "nodeinstall"
|
|
606
607
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
607
|
-
- yarn install --immutable
|
|
608
|
+
- yarn install --immutable --inline-builds
|
|
608
609
|
- collapseable_section_end "yarninstall"
|
|
609
610
|
- yarn test
|
|
610
611
|
cache:
|
|
@@ -680,7 +681,7 @@ before_script:
|
|
|
680
681
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
681
682
|
- collapseable_section_end "nodeinstall"
|
|
682
683
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
683
|
-
- yarn install --immutable
|
|
684
|
+
- yarn install --immutable --inline-builds
|
|
684
685
|
- collapseable_section_end "yarninstall"
|
|
685
686
|
- yarn build
|
|
686
687
|
cache:
|
|
@@ -739,7 +740,8 @@ before_script:
|
|
|
739
740
|
- export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/api"
|
|
740
741
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
741
742
|
- |-
|
|
742
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
743
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
744
|
+
COPY --chown=node:node $APP_DIR .
|
|
743
745
|
RUN yarn plugin import workspace-tools
|
|
744
746
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
745
747
|
- |-
|
|
@@ -1002,7 +1004,7 @@ before_script:
|
|
|
1002
1004
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1003
1005
|
- collapseable_section_end "nodeinstall"
|
|
1004
1006
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1005
|
-
- yarn install --immutable
|
|
1007
|
+
- yarn install --immutable --inline-builds
|
|
1006
1008
|
- collapseable_section_end "yarninstall"
|
|
1007
1009
|
- yarn build
|
|
1008
1010
|
cache:
|
|
@@ -1057,7 +1059,8 @@ before_script:
|
|
|
1057
1059
|
- export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/api"
|
|
1058
1060
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1059
1061
|
- |-
|
|
1060
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1062
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1063
|
+
COPY --chown=node:node $APP_DIR .
|
|
1061
1064
|
RUN yarn plugin import workspace-tools
|
|
1062
1065
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1063
1066
|
- |-
|
|
@@ -1305,7 +1308,7 @@ before_script:
|
|
|
1305
1308
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1306
1309
|
- collapseable_section_end "nodeinstall"
|
|
1307
1310
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1308
|
-
- yarn install --immutable
|
|
1311
|
+
- yarn install --immutable --inline-builds
|
|
1309
1312
|
- collapseable_section_end "yarninstall"
|
|
1310
1313
|
- yarn build
|
|
1311
1314
|
cache:
|
|
@@ -1360,7 +1363,8 @@ before_script:
|
|
|
1360
1363
|
- export DOCKER_CACHE_IMAGE="asia-east1-docker.pkg.dev/asdf/catladder-deploy/pan-test-app/caches/api"
|
|
1361
1364
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1362
1365
|
- |-
|
|
1363
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1366
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1367
|
+
COPY --chown=node:node $APP_DIR .
|
|
1364
1368
|
RUN yarn plugin import workspace-tools
|
|
1365
1369
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1366
1370
|
- |-
|
|
@@ -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:
|
|
@@ -277,7 +277,7 @@ before_script:
|
|
|
277
277
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
278
278
|
- collapseable_section_end "nodeinstall"
|
|
279
279
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
280
|
-
- yarn install --immutable
|
|
280
|
+
- yarn install --immutable --inline-builds
|
|
281
281
|
- collapseable_section_end "yarninstall"
|
|
282
282
|
- yarn build
|
|
283
283
|
cache:
|
|
@@ -332,7 +332,8 @@ before_script:
|
|
|
332
332
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
333
333
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
334
334
|
- |-
|
|
335
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
335
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
336
|
+
COPY --chown=node:node $APP_DIR .
|
|
336
337
|
RUN yarn plugin import workspace-tools
|
|
337
338
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
338
339
|
- |-
|
|
@@ -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 lint
|
|
644
645
|
cache:
|
|
@@ -682,7 +683,7 @@ before_script:
|
|
|
682
683
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
683
684
|
- collapseable_section_end "nodeinstall"
|
|
684
685
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
685
|
-
- yarn install --immutable
|
|
686
|
+
- yarn install --immutable --inline-builds
|
|
686
687
|
- collapseable_section_end "yarninstall"
|
|
687
688
|
- yarn test
|
|
688
689
|
cache:
|
|
@@ -774,7 +775,7 @@ before_script:
|
|
|
774
775
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
775
776
|
- collapseable_section_end "nodeinstall"
|
|
776
777
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
777
|
-
- yarn install --immutable
|
|
778
|
+
- yarn install --immutable --inline-builds
|
|
778
779
|
- collapseable_section_end "yarninstall"
|
|
779
780
|
- yarn build
|
|
780
781
|
cache:
|
|
@@ -833,7 +834,8 @@ before_script:
|
|
|
833
834
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
834
835
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
835
836
|
- |-
|
|
836
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
837
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
838
|
+
COPY --chown=node:node $APP_DIR .
|
|
837
839
|
RUN yarn plugin import workspace-tools
|
|
838
840
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
839
841
|
- |-
|
|
@@ -1177,7 +1179,7 @@ before_script:
|
|
|
1177
1179
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1178
1180
|
- collapseable_section_end "nodeinstall"
|
|
1179
1181
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1180
|
-
- yarn install --immutable
|
|
1182
|
+
- yarn install --immutable --inline-builds
|
|
1181
1183
|
- collapseable_section_end "yarninstall"
|
|
1182
1184
|
- yarn build
|
|
1183
1185
|
cache:
|
|
@@ -1232,7 +1234,8 @@ before_script:
|
|
|
1232
1234
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
1233
1235
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1234
1236
|
- |-
|
|
1235
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1237
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1238
|
+
COPY --chown=node:node $APP_DIR .
|
|
1236
1239
|
RUN yarn plugin import workspace-tools
|
|
1237
1240
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1238
1241
|
- |-
|
|
@@ -1558,7 +1561,7 @@ before_script:
|
|
|
1558
1561
|
- if command -v nvm &> /dev/null && [ -f ./.nvmrc ]; then nvm install; fi
|
|
1559
1562
|
- collapseable_section_end "nodeinstall"
|
|
1560
1563
|
- collapseable_section_start "yarninstall" "Yarn install"
|
|
1561
|
-
- yarn install --immutable
|
|
1564
|
+
- yarn install --immutable --inline-builds
|
|
1562
1565
|
- collapseable_section_end "yarninstall"
|
|
1563
1566
|
- yarn build
|
|
1564
1567
|
cache:
|
|
@@ -1613,7 +1616,8 @@ before_script:
|
|
|
1613
1616
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/api"
|
|
1614
1617
|
- export DOCKER_IMAGE_TAG="$CI_COMMIT_SHA"
|
|
1615
1618
|
- |-
|
|
1616
|
-
export DOCKER_COPY_AND_INSTALL_APP="
|
|
1619
|
+
export DOCKER_COPY_AND_INSTALL_APP="ENV YARN_ENABLE_INLINE_BUILDS=1
|
|
1620
|
+
COPY --chown=node:node $APP_DIR .
|
|
1617
1621
|
RUN yarn plugin import workspace-tools
|
|
1618
1622
|
RUN yarn workspaces focus --production && yarn rebuild"
|
|
1619
1623
|
- |-
|