Merge pull request #104894 from pacoxu/windows-arm

add windows arm support on client-side since go 1.17 supports
This commit is contained in:
Kubernetes Prow Robot 2021-10-04 04:19:07 -07:00 committed by GitHub
commit f31453fe5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View File

@ -52,6 +52,7 @@ readonly KUBE_SUPPORTED_CLIENT_PLATFORMS=(
darwin/arm64 darwin/arm64
windows/amd64 windows/amd64
windows/386 windows/386
windows/arm64
) )
# Which platforms we should compile test targets for. # Which platforms we should compile test targets for.
@ -65,6 +66,7 @@ readonly KUBE_SUPPORTED_TEST_PLATFORMS=(
darwin/amd64 darwin/amd64
darwin/arm64 darwin/arm64
windows/amd64 windows/amd64
windows/arm64
) )
# The set of server targets that we are only building for Linux # The set of server targets that we are only building for Linux

View File

@ -52,6 +52,7 @@ var (
"linux/arm", "linux/386", "linux/arm", "linux/386",
"windows/amd64", "linux/arm64", "windows/amd64", "linux/arm64",
"linux/ppc64le", "linux/s390x", "linux/ppc64le", "linux/s390x",
"windows/arm64",
} }
// directories we always ignore // directories we always ignore