Skip to content
This repository has been archived by the owner on Oct 2, 2023. It is now read-only.

Commit

Permalink
Do not use constraints from bazel_tools
Browse files Browse the repository at this point in the history
Fixes #1953
  • Loading branch information
limdor authored and gravypod committed Nov 9, 2021
1 parent eba5bfa commit d1327b6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions toolchains/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ toolchain(
name = "rbe_container_cc_toolchain",
exec_compatible_with = [
"@io_bazel_rules_docker//platforms:run_in_container",
"@bazel_tools//platforms:x86_64",
"@bazel_tools//platforms:linux",
"@platforms//cpu:x86_64",
"@platforms//os:linux",
"@bazel_tools//tools/cpp:clang",
],
target_compatible_with = [
"@bazel_tools//platforms:linux",
"@bazel_tools//platforms:x86_64",
"@platforms//os:linux",
"@platforms//cpu:x86_64",
],
toolchain = "@buildkite_config//cc:cc-compiler-k8",
toolchain_type = "@bazel_tools//tools/cpp:toolchain_type",
Expand Down
6 changes: 3 additions & 3 deletions toolchains/docker/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ docker_toolchain(
toolchain(
name = "default_linux_toolchain",
target_compatible_with = [
"@bazel_tools//platforms:linux",
"@platforms//os:linux",
],
toolchain = "@docker_config//:toolchain",
toolchain_type = ":toolchain_type",
Expand All @@ -51,7 +51,7 @@ toolchain(
toolchain(
name = "default_windows_toolchain",
target_compatible_with = [
"@bazel_tools//platforms:windows",
"@platforms//os:windows",
],
toolchain = "@docker_config//:toolchain",
toolchain_type = ":toolchain_type",
Expand All @@ -60,7 +60,7 @@ toolchain(
toolchain(
name = "default_osx_toolchain",
target_compatible_with = [
"@bazel_tools//platforms:osx",
"@platforms//os:osx",
],
toolchain = "@docker_config//:toolchain",
toolchain_type = ":toolchain_type",
Expand Down

0 comments on commit d1327b6

Please sign in to comment.