Skip to content

Commit

Permalink
remove TODO as Darwin ARM64 binaries are being built and published (#442
Browse files Browse the repository at this point in the history
)
  • Loading branch information
dbanetto authored Jul 12, 2024
1 parent 72d2f27 commit 61e4ef1
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,7 @@ structure_test_toolchain(
def _structure_test_repo_impl(repository_ctx):
platform = repository_ctx.attr.platform.replace("_", "-")

# There is no arm64 version of structure test binary.
# TODO: remove this after we start publishing one.
if platform.find("darwin") != -1:
platform = platform.replace("arm64", "amd64")
elif platform.find("windows") != -1:
if platform.find("windows") != -1:
platform = platform + ".exe"
url = "https://github.com/GoogleContainerTools/container-structure-test/releases/download/{version}/container-structure-test-{platform}".format(
version = _VERSION,
Expand Down

0 comments on commit 61e4ef1

Please sign in to comment.