From: Dan Fuhry Date: Sun, 16 Nov 2025 02:58:29 +0000 (-0500) Subject: only enable cgo on amd64 for now X-Git-Url: https://go.fuhry.dev/?a=commitdiff_plain;h=c70491d7db61fca1332111217596c5ebade3931c;p=runtime.git only enable cgo on amd64 for now --- diff --git a/mtls/BUILD.bazel b/mtls/BUILD.bazel index 4195239..af97dbd 100644 --- a/mtls/BUILD.bazel +++ b/mtls/BUILD.bazel @@ -15,7 +15,7 @@ go_library( "verify_roots.go", ], cgo = select({ - "@rules_go//go/platform:linux": True, + "@rules_go//go/platform:linux_amd64": True, "//conditions:default": False, }), importpath = "go.fuhry.dev/runtime/mtls",