Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions bazel/git-toolchain/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,18 @@ toolchain(
toolchain = ":git_macos_arm64",
toolchain_type = ":toolchain_type",
)

toolchain(
name = "git_windows_toolchain",
# TODO(devversion): Consult with Bazel team on best practices.
# Toolchain selection isn't able to cross-compile if we require Windows
# also as execution platform. This shouldn't be necessary because the toolchain
# is only used for target platform execution (not to be confused with Bazel execution).
# exec_compatible_with = [],
target_compatible_with = [
"@platforms//os:windows",
"@platforms//cpu:x86_64",
],
toolchain = ":git_windows",
toolchain_type = ":toolchain_type",
)
1 change: 0 additions & 1 deletion bazel/remote-execution/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ platform(
constraint_values = [
"@platforms//os:linux",
"@platforms//cpu:x86_64",
"@bazel_tools//tools/cpp:clang",
],
exec_properties = {
# We use the official Puppeteer docker image that supports launching browsers. Note that we
Expand Down
Loading