Skip to content

Commit

Permalink
feat: allow downloading bazelisk binary for Windows arm64 (#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
malt3 authored Dec 31, 2024
1 parent 498bb86 commit 9daa397
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bazel_integration_test/private/bazel_binaries.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ def _download_bazelisk_binary(repository_ctx, version):
suffix = "darwin-arm64"
elif _is_windows(os_name) and _is_x86_64(arch_name):
suffix = "windows-amd64.exe"
elif _is_windows(os_name) and _is_arm(arch_name):
suffix = "windows-arm64.exe"
else:
fail("Unrecognized os and arch. os: {}, arch: {}".format(
os_name,
Expand Down

0 comments on commit 9daa397

Please sign in to comment.