]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/dist, internal/platform: mark freebsd/riscv64 broken
authorMark Freeman <mark@golang.org>
Wed, 30 Jul 2025 17:41:18 +0000 (13:41 -0400)
committerMark Freeman <mark@golang.org>
Tue, 5 Aug 2025 21:10:52 +0000 (14:10 -0700)
It seems we have a builder, but it is not running correctly. Until
then, we should mark this port broken.

For #74734
For #74735

Change-Id: I536d037a43499cbd033fb6ebdf004a3df76332ab
Reviewed-on: https://go-review.googlesource.com/c/go/+/691835
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
src/cmd/dist/build.go
src/internal/platform/zosarch.go

index 024050c2dd70c4b7cf740b6e030fb44e62763d3a..c26f55f2cb319cb55a4f14ee6c99ede69d4e0e2e 100644 (file)
@@ -1828,9 +1828,10 @@ var cgoEnabled = map[string]bool{
 // get filtered out of cgoEnabled for 'dist list'.
 // See go.dev/issue/56679.
 var broken = map[string]bool{
-       "linux/sparc64":  true, // An incomplete port. See CL 132155.
-       "openbsd/mips64": true, // Broken: go.dev/issue/58110.
-       "windows/arm":    true, // Broken: go.dev/issue/68552.
+       "freebsd/riscv64": true, // Broken: go.dev/issue/73568.
+       "linux/sparc64":   true, // An incomplete port. See CL 132155.
+       "openbsd/mips64":  true, // Broken: go.dev/issue/58110.
+       "windows/arm":     true, // Broken: go.dev/issue/68552.
 }
 
 // List of platforms which are first class ports. See go.dev/issue/38874.
index ebde978a230f74e52a0921621bae8dcf0e60f0c0..7a5e808b94e0192a475239b66c222814aab58233 100644 (file)
@@ -74,7 +74,7 @@ var distInfo = map[OSArch]osArchInfo{
        {"freebsd", "amd64"}:   {CgoSupported: true},
        {"freebsd", "arm"}:     {CgoSupported: true},
        {"freebsd", "arm64"}:   {CgoSupported: true},
-       {"freebsd", "riscv64"}: {CgoSupported: true},
+       {"freebsd", "riscv64"}: {CgoSupported: true, Broken: true},
        {"illumos", "amd64"}:   {CgoSupported: true},
        {"ios", "amd64"}:       {CgoSupported: true},
        {"ios", "arm64"}:       {CgoSupported: true},