dashboard: add openbsd-mips64-jsing builder (reverse)

Update golang/go#40995

Change-Id: Ie733438ab1823d65109e684a6a5e3098cdfdb252
Reviewed-on: https://go-review.googlesource.com/c/build/+/250118
Trust: Joel Sing <joel@sing.id.au>
Run-TryBot: Joel Sing <joel@sing.id.au>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
diff --git a/dashboard/builders.go b/dashboard/builders.go
index ab96d3f..9eae12e 100644
--- a/dashboard/builders.go
+++ b/dashboard/builders.go
@@ -78,6 +78,7 @@
 	"openbsd-amd64":  "openbsd-amd64-64",
 	"openbsd-arm":    "openbsd-arm-jsing",
 	"openbsd-arm64":  "openbsd-arm64-jsing",
+	"openbsd-mips64": "openbsd-mips64-jsing",
 	"plan9":          "plan9-arm",
 	"plan9-386":      "plan9-386-0intro",
 	"plan9-amd64":    "plan9-amd64-9front",
@@ -257,6 +258,12 @@
 		env:         []string{"GOROOT_BOOTSTRAP=/usr/local/go"},
 		OwnerGithub: "4a6f656c",
 	},
+	"host-openbsd-mips64-joelsing": &HostConfig{
+		IsReverse:   true,
+		ExpectNum:   1,
+		env:         []string{"GOROOT_BOOTSTRAP=/usr/local/go"},
+		OwnerGithub: "4a6f656c",
+	},
 	"host-freebsd-11_1": &HostConfig{
 		VMImage:            "freebsd-amd64-111-b",
 		Notes:              "FreeBSD 11.1; GCE VM is built from script in build/env/freebsd-amd64",
@@ -1922,6 +1929,26 @@
 		},
 	})
 	addBuilder(BuildConfig{
+		Name:         "openbsd-mips64-jsing",
+		HostType:     "host-openbsd-mips64-joelsing",
+		SkipSnapshot: true,
+		KnownIssue:   40995,
+		buildsRepo: func(repo, branch, goBranch string) bool {
+			switch repo {
+			case "go", "net", "sys":
+				return branch == "master" && goBranch == "master"
+			default:
+				return false
+			}
+		},
+		distTestAdjust: noTestDirAndNoReboot,
+		tryBot:         nil,
+		env: []string{
+			// The machine is slow.
+			"GO_TEST_TIMEOUT_SCALE=5",
+		},
+	})
+	addBuilder(BuildConfig{
 		Name:           "netbsd-amd64-9_0",
 		HostType:       "host-netbsd-amd64-9_0",
 		distTestAdjust: noTestDirAndNoReboot,