Skip to content
This repository has been archived by the owner on Feb 6, 2024. 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 #674
  • Loading branch information
limdor committed Nov 8, 2021
1 parent d05cbea commit b7e31b8
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions toolchains/kubectl/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ kubectl_toolchain(
toolchain(
name = "kubectl_linux_amd64_toolchain",
target_compatible_with = [
"@bazel_tools//platforms:linux",
"@bazel_tools//platforms:x86_64",
"@platforms//os:linux",
"@platforms//cpu:x86_64",
],
toolchain = "@k8s_config//:toolchain",
toolchain_type = ":toolchain_type",
Expand All @@ -45,8 +45,8 @@ toolchain(
toolchain(
name = "kubectl_linux_s390x_toolchain",
target_compatible_with = [
"@bazel_tools//platforms:linux",
"@bazel_tools//platforms:s390x",
"@platforms//os:linux",
"@platforms//cpu:s390x",
],
toolchain = "@k8s_config//:toolchain",
toolchain_type = ":toolchain_type",
Expand All @@ -55,8 +55,8 @@ toolchain(
toolchain(
name = "kubectl_linux_arm64_toolchain",
target_compatible_with = [
"@bazel_tools//platforms:linux",
"@bazel_tools//platforms:aarch64",
"@platforms//os:linux",
"@platforms//cpu:aarch64",
],
toolchain = "@k8s_config//:toolchain",
toolchain_type = ":toolchain_type",
Expand All @@ -65,8 +65,8 @@ toolchain(
toolchain(
name = "kubectl_osx_toolchain",
target_compatible_with = [
"@bazel_tools//platforms:osx",
"@bazel_tools//platforms:x86_64",
"@platforms//os:osx",
"@platforms//cpu:x86_64",
],
toolchain = "@k8s_config//:toolchain",
toolchain_type = ":toolchain_type",
Expand All @@ -75,8 +75,8 @@ toolchain(
toolchain(
name = "kubectl_windows_toolchain",
target_compatible_with = [
"@bazel_tools//platforms:windows",
"@bazel_tools//platforms:x86_64",
"@platforms//os:windows",
"@platforms//cpu:x86_64",
],
toolchain = "@k8s_config//:toolchain",
toolchain_type = ":toolchain_type",
Expand Down

0 comments on commit b7e31b8

Please sign in to comment.