|
48 | 48 | "@%s//:node" % node_toolchain, |
49 | 49 | "@bazel_tools//tools/bash/runfiles", |
50 | 50 | ], |
51 | | - tags = tags, |
52 | 51 | ) |
53 | | - for (node_toolchain, tool, tags) in [ |
| 52 | + for (node_toolchain, tool) in [ |
54 | 53 | ( |
55 | 54 | "nodejs", |
56 | 55 | "npm", |
57 | | - ["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/13451#018feffd-4878-46e4-8582-ae94648a2d74) |
58 | 56 | ), |
59 | 57 | ( |
60 | 58 | "nodejs", |
61 | 59 | "npx", |
62 | | - ["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/13451#018feffd-4878-46e4-8582-ae94648a2d74) |
63 | 60 | ), |
64 | | - ("node16", "npm", []), |
65 | | - ("node16", "npx", []), |
66 | | - ("node16_nvmrc", "npm", []), |
67 | | - ("node16_nvmrc", "npx", []), |
68 | | - ("node17_custom", "npm", []), |
69 | | - ("node17_custom", "npx", []), |
| 61 | + ("node16", "npm"), |
| 62 | + ("node16", "npx"), |
| 63 | + ("node16_nvmrc", "npm"), |
| 64 | + ("node16_nvmrc", "npx"), |
| 65 | + ("node17_custom", "npm"), |
| 66 | + ("node17_custom", "npx"), |
70 | 67 | ] |
71 | 68 | ] |
0 commit comments