Skip to content

Commit a818e8d

Browse files
committed
dashboard: remove known issue for iOS and Android builders
The old known issue has been resolved: the builders have been restarted and are back. That uncovered what appears to be a recent regression, reported as golang/go#49616. Also add a new builder owner based on conversation at https://groups.google.com/g/golang-dev/c/oiuIE7qrWp0. Updates golang/go#48772. Updates golang/go#49048. Updates golang/go#49616. Change-Id: I7a6a89b7fb088373a70bd3496ad2091ec7a3d79f Reviewed-on: https://go-review.googlesource.com/c/build/+/363985 Trust: Dmitri Shuralyov <[email protected]> Reviewed-by: Alexander Rakoczy <[email protected]>
1 parent 2891c2e commit a818e8d

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

dashboard/builders.go

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ var Hosts = map[string]*HostConfig{
579579
},
580580
"host-ios-arm64-corellium-ios": &HostConfig{
581581
Notes: "Virtual iOS devices hosted by Zenly on Corellium; see issues 31722 and 40523",
582-
Owners: []*gophers.Person{gh("steeve")},
582+
Owners: []*gophers.Person{gh("steeve"), gh("changkun")}, // See https://groups.google.com/g/golang-dev/c/oiuIE7qrWp0.
583583
IsReverse: true,
584584
ExpectNum: 3,
585585
env: []string{
@@ -588,7 +588,7 @@ var Hosts = map[string]*HostConfig{
588588
},
589589
"host-android-arm64-corellium-android": &HostConfig{
590590
Notes: "Virtual Android devices hosted by Zenly on Corellium; see issues 31722 and 40523",
591-
Owners: []*gophers.Person{gh("steeve")},
591+
Owners: []*gophers.Person{gh("steeve"), gh("changkun")}, // See https://groups.google.com/g/golang-dev/c/oiuIE7qrWp0.
592592
IsReverse: true,
593593
ExpectNum: 3,
594594
env: []string{
@@ -2202,7 +2202,7 @@ func init() {
22022202
buildsRepo: func(repo, branch, goBranch string) bool {
22032203
return repo == "go" && branch == "master" && goBranch == "master"
22042204
},
2205-
KnownIssue: 48772,
2205+
KnownIssue: 49616,
22062206
})
22072207
addBuilder(BuildConfig{
22082208
Name: "android-arm64-corellium",
@@ -2211,7 +2211,6 @@ func init() {
22112211
buildsRepo: func(repo, branch, goBranch string) bool {
22122212
return repo == "go" && branch == "master" && goBranch == "master"
22132213
},
2214-
KnownIssue: 49048,
22152214
})
22162215
addBuilder(BuildConfig{
22172216
Name: "android-arm-corellium",
@@ -2220,7 +2219,6 @@ func init() {
22202219
buildsRepo: func(repo, branch, goBranch string) bool {
22212220
return repo == "go" && branch == "master" && goBranch == "master"
22222221
},
2223-
KnownIssue: 49048,
22242222
env: []string{
22252223
"CGO_ENABLED=1",
22262224
"GOARCH=arm",

internal/gophers/gophers.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -586,6 +586,7 @@ func init() {
586586
addPerson("Chad Rosier", "[email protected]", "25690@62eb7196-b449-3ce5-99f1-c037f21e1705", "@mrosier-qdt")
587587
addPerson("ChaiShushan", "[email protected]", "@chai2010")
588588
addPerson("Chance Zibolski", "[email protected]")
589+
addPerson("Changkun Ou", "[email protected]", "@changkun")
589590
addPerson("Changsoo Kim", "[email protected]")
590591
addPerson("Channing Kimble-Brown", "[email protected]", "@cnoellekb")
591592
addPerson("Charle Demers", "[email protected]")

0 commit comments

Comments
 (0)