We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72d2f27 commit 61e4ef1Copy full SHA for 61e4ef1
repositories.bzl
@@ -31,11 +31,7 @@ structure_test_toolchain(
31
def _structure_test_repo_impl(repository_ctx):
32
platform = repository_ctx.attr.platform.replace("_", "-")
33
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:
+ if platform.find("windows") != -1:
39
platform = platform + ".exe"
40
url = "https://github.com/GoogleContainerTools/container-structure-test/releases/download/{version}/container-structure-test-{platform}".format(
41
version = _VERSION,
0 commit comments