@@ -25,11 +25,11 @@ parameters:
25
25
# See https://circleci.com/docs/2.0/caching/#restoring-cache for how prefixes work in CircleCI.
26
26
var_1 : &cache_key v1-angular_devkit-16.14-{{ checksum "yarn.lock" }}
27
27
var_1_win : &cache_key_win v1-angular_devkit-win-16.14-{{ checksum "yarn.lock" }}
28
- var_3 : &default_nodeversion '16.14 '
29
- var_3_major : &default_nodeversion_major '16 '
28
+ var_3 : &default_nodeversion '18.13 '
29
+ var_3_major : &default_nodeversion_major '18 '
30
30
# The major version of node toolchains. See tools/toolchain_info.bzl
31
31
# NOTE: entries in this array may be repeated elsewhere in the file, find them before adding more
32
- var_3_all_major : &all_nodeversion_major ['16', ' 18']
32
+ var_3_all_major : &all_nodeversion_major ['18']
33
33
# Workspace initially persisted by the `setup` job, and then enhanced by `setup-and-build-win`.
34
34
# https://circleci.com/docs/2.0/workflows/#using-workspaces-to-share-data-among-jobs
35
35
# https://circleci.com/blog/deep-diving-into-circleci-workspaces/
@@ -141,8 +141,8 @@ commands:
141
141
setup_windows :
142
142
steps :
143
143
- initialize_env
144
- - run : nvm install 16.14.2
145
- - run : nvm use 16.14.2
144
+ - run : nvm install 18.13.0
145
+ - run : nvm use 18.13.0
146
146
-
run :
npm install -g [email protected] @bazel/bazelisk@${BAZELISK_VERSION}
147
147
- run : node --version
148
148
- run : yarn --version
@@ -299,15 +299,15 @@ jobs:
299
299
PWD : .
300
300
command : |
301
301
mkdir X:/ramdisk/e2e
302
- bazel test --define=E2E_TEMP=X:/ramdisk/e2e --define=E2E_SHARD_TOTAL=$env:CIRCLE_NODE_TOTAL --define=E2E_SHARD_INDEX=$env:CIRCLE_NODE_INDEX --config=e2e //tests/legacy-cli:e2e.npm_node16
302
+ bazel test --define=E2E_TEMP=X:/ramdisk/e2e --define=E2E_SHARD_TOTAL=$env:CIRCLE_NODE_TOTAL --define=E2E_SHARD_INDEX=$env:CIRCLE_NODE_INDEX --config=e2e //tests/legacy-cli:e2e.npm_node18
303
303
# This timeout provides time for the actual tests to timeout and report status
304
304
# instead of CircleCI stopping the job without test failure information.
305
305
no_output_timeout : 40m
306
306
- fail_fast
307
307
- store_artifacts :
308
- path : dist/testlogs/tests/legacy-cli/e2e.npm_node16
308
+ path : dist/testlogs/tests/legacy-cli/e2e.npm_node18
309
309
- store_test_results :
310
- path : dist/testlogs/tests/legacy-cli/e2e.npm_node16
310
+ path : dist/testlogs/tests/legacy-cli/e2e.npm_node18
311
311
312
312
workflows :
313
313
version : 2
0 commit comments