You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: e2e/smoke/BUILD.bazel
+29Lines changed: 29 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -234,6 +234,12 @@ write_file(
234
234
content= ["v16.5.0"],
235
235
)
236
236
237
+
write_file(
238
+
name="write_node_version_24",
239
+
out="expected_node_24",
240
+
content= ["v24.12.0"],
241
+
)
242
+
237
243
# To see what nodejs version is used by default
238
244
my_nodejs(
239
245
name="run_no_toolchain",
@@ -312,3 +318,26 @@ diff_test(
312
318
file1="write_node_version_15",
313
319
file2="thing_toolchain_15",
314
320
)
321
+
322
+
my_nodejs(
323
+
name="run_24",
324
+
out="thing_toolchain_24",
325
+
entry_point="version.js",
326
+
tags= ["skip-on-bazelci-ubuntu"], # fails on Bazel CI Ubuntu on latest Node.js due to GLIBC version on runner: "GLIBC_2.28 not found" (https://buildkite.com/bazel/rules-nodejs-nodejs/builds/14235#019b4856-6461-4f2d-b6f9-d7d722fcac99)
327
+
# using the select statement will download toolchains for all three platforms
328
+
# you can also just provide an individual toolchain if you don't want to download them all
tags= ["skip-on-bazelci-ubuntu"], # fails on Bazel CI Ubuntu on latest Node.js due to GLIBC version on runner: "GLIBC_2.28 not found" (https://buildkite.com/bazel/rules-nodejs-nodejs/builds/14235#019b4856-6461-4f2d-b6f9-d7d722fcac99)
0 commit comments