Skip to content

Commit 61e4ef1

Browse files
authored
remove TODO as Darwin ARM64 binaries are being built and published (#442)
1 parent 72d2f27 commit 61e4ef1

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

repositories.bzl

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,7 @@ structure_test_toolchain(
3131
def _structure_test_repo_impl(repository_ctx):
3232
platform = repository_ctx.attr.platform.replace("_", "-")
3333

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

0 commit comments

Comments
 (0)