@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:
|
|
@@ -316,7 +316,8 @@ before_script:
|
|
|
316
316
|
- export DOCKER_CACHE_IMAGE="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
|
|
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-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
|
|
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-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
|
|
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-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
|
|
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="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
|
|
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-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
|
|
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-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
|
|
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-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
|
|
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="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
|
|
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-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
|
|
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-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
|
|
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-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
|
|
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="europe-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
|
|
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-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
|
|
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-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
|
|
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-west6-docker.pkg.dev/google-project-id/catladder-deploy/pan-test-app/caches/www"
|
|
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="europe-west6-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-west6-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-west6-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-west6-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="europe-west6-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-west6-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-west6-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-west6-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
|
- |-
|