File tree 1 file changed +8
-6
lines changed
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 4
4
# the order will match against the order in the TOOLCHAIN_VERSION list.
5
5
TOOLCHAINS_NAMES = [
6
6
"node14" ,
7
- "node16" ,
7
+ # TODO enable one we know more why there is a memory usage increase and app-shell tests work with Node.js 16.
8
+ # "node16",
8
9
]
9
10
10
11
# this is the list of toolchains that should be used and are registered with nodejs_register_toolchains in the WORKSPACE file
@@ -14,11 +15,12 @@ TOOLCHAINS_VERSIONS = [
14
15
"@bazel_tools//src/conditions:darwin" : "@node14_darwin_amd64//:node_toolchain" ,
15
16
"@bazel_tools//src/conditions:windows" : "@node14_windows_amd64//:node_toolchain" ,
16
17
}),
17
- select ({
18
- "@bazel_tools//src/conditions:linux_x86_64" : "@node14_linux_amd64//:node_toolchain" ,
19
- "@bazel_tools//src/conditions:darwin" : "@node14_darwin_amd64//:node_toolchain" ,
20
- "@bazel_tools//src/conditions:windows" : "@node14_windows_amd64//:node_toolchain" ,
21
- }),
18
+ # TODO enable one we know more why there is a memory usage increase and app-shell tests work with Node.js 16.
19
+ # select({
20
+ # "@bazel_tools//src/conditions:linux_x86_64": "@node16_linux_amd64//:node_toolchain",
21
+ # "@bazel_tools//src/conditions:darwin": "@node16_darwin_amd64//:node_toolchain",
22
+ # "@bazel_tools//src/conditions:windows": "@node16_windows_amd64//:node_toolchain",
23
+ # }),
22
24
]
23
25
24
26
# A default toolchain for use when only one is necessary
You can’t perform that action at this time.
0 commit comments