File tree 1 file changed +11
-9
lines changed
1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change 3
3
# the name can be anything the user wants this is just added to the target to create unique names
4
4
# the order will match against the order in the TOOLCHAIN_VERSION list.
5
5
TOOLCHAINS_NAMES = [
6
- "node14" ,
6
+ # TODO enable one we know more why there is a memory usage increase
7
+ # "node14",
7
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
11
12
TOOLCHAINS_VERSIONS = [
13
+ # TODO enable one we know more why there is a memory usage increase
14
+ # select({
15
+ # "@bazel_tools//src/conditions:linux_x86_64": "@node14_linux_amd64//:node_toolchain",
16
+ # "@bazel_tools//src/conditions:darwin": "@node14_darwin_amd64//:node_toolchain",
17
+ # "@bazel_tools//src/conditions:windows": "@node14_windows_amd64//:node_toolchain",
18
+ # }),
12
19
select ({
13
- "@bazel_tools//src/conditions:linux_x86_64" : "@node14_linux_amd64//:node_toolchain" ,
14
- "@bazel_tools//src/conditions:darwin" : "@node14_darwin_amd64//:node_toolchain" ,
15
- "@bazel_tools//src/conditions:windows" : "@node14_windows_amd64//:node_toolchain" ,
16
- }),
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" ,
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" ,
21
23
}),
22
24
]
23
25
You can’t perform that action at this time.
0 commit comments