You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmd/coordinator: run subrepo trybots against recent Go release branches
This is the coordinator half of the change to make the coordinator
test subrepos against two prior releases of Go.
The next change that's required is for the maintnerd API server to
return the name of the past two releases.
For now this change is a no-op. But once maintnerd starts returning
more data, then this change will start causing causing two more
linux-amd64 builders per subrepo trybot.
Updates golang/go#17626
Change-Id: I1cedbc2e4eee51fb003c8bcc8e072fd10717a833
Reviewed-on: https://go-review.googlesource.com/c/143538
Reviewed-by: Dmitri Shuralyov <[email protected]>
"Consult https://build.golang.org/ to see whether it's a new failure. Other builds still in progress; subsequent failure notices suppressed until final report.",
1295
-
bs.Name, failLogURL),
1328
+
bs.NameAndBranch(), failLogURL),
1296
1329
}); err!=nil {
1297
1330
log.Printf("Failed to call Gerrit: %v", err)
1298
1331
return
@@ -3251,6 +3284,7 @@ type buildStatus struct {
3251
3284
// Immutable:
3252
3285
buildgo.BuilderRev
3253
3286
buildIDstring// "B" + 9 random hex
3287
+
goBranchstring// non-empty for subrepo trybots if not go master branch
3254
3288
conf dashboard.BuildConfig
3255
3289
startTime time.Time// actually time of newBuild (~same thing); TODO(bradfitz): rename this createTime
3256
3290
trySet*trySet// or nil
@@ -3275,6 +3309,13 @@ type buildStatus struct {
3275
3309
useSnapshotMemo*bool// if non-nil, memoized result of useSnapshot
0 commit comments