Skip to content

Commit

Permalink
Speculative fix for Windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jfirebaugh committed Dec 20, 2022
1 parent ea458fb commit ba2e7fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ jobs:
environment:
PYTHONUNBUFFERED: "1"
EMSDK_NOTTY: "1"
USE_BAZEL_VERSION: "5.4.0"
steps:
- checkout
- run:
Expand Down
5 changes: 4 additions & 1 deletion bazel/emscripten_toolchain/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ emscripten_cc_toolchain_config_rule(
"@bazel_tools//src/conditions:host_windows": "bat",
"//conditions:default": "sh",
}),
node_binary = "@nodejs//:node",
node_binary = select({
"@bazel_tools//src/conditions:host_windows": "@nodejs//:node_bin",
"//conditions:default": "@nodejs//:node",
}),
)

cc_toolchain(
Expand Down

0 comments on commit ba2e7fa

Please sign in to comment.