Skip to content

Commit a4dfb26

Browse files
dmitshurgopherbot
authored andcommitted
maintner/maintnerd/maintapi: stop testing x/website on Go 1.16
Testing x/website on Go 1.16.15 was helpful only until App Engine started supporting¹ a currently-supported Go version like Go 1.19. This undoes the change added in CL 393858, to be submitted around the same time as x/website/cmd/golangorg/app.yaml's runtime value goes from go116 to go119 or so. ¹ https://cloud.google.com/appengine/docs/standard/go/release-notes#December_07_2022 For golang/go#51800. Change-Id: I621833060a160abf1fccdeb5b331582651eabc14 Reviewed-on: https://go-review.googlesource.com/c/build/+/456715 TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Bryan Mills <[email protected]> Run-TryBot: Dmitri Shuralyov <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> Auto-Submit: Dmitri Shuralyov <[email protected]>
1 parent d86daaa commit a4dfb26

File tree

1 file changed

+0
-8
lines changed
  • maintner/maintnerd/maintapi

1 file changed

+0
-8
lines changed

maintner/maintnerd/maintapi/api.go

-8
Original file line numberDiff line numberDiff line change
@@ -210,14 +210,6 @@ func tryWorkItem(
210210
w.GoBranch = append(w.GoBranch, r.BranchName)
211211
w.GoVersion = append(w.GoVersion, &apipb.MajorMinor{Major: r.Major, Minor: r.Minor})
212212
}
213-
214-
// Test x/website with Go 1.16.15 in addition to the supportedReleases above.
215-
// TODO(go.dev/issue/51800): Remove this once x/website deployment is updated.
216-
if w.Project == "website" {
217-
w.GoCommit = append(w.GoCommit, "7de0c90a1771146bcba5663fb257c52acffe6161") // go1.16.15 tag.
218-
w.GoBranch = append(w.GoBranch, "release-branch.go1.16")
219-
w.GoVersion = append(w.GoVersion, &apipb.MajorMinor{Major: 1, Minor: 16})
220-
}
221213
} else {
222214
// A branch that is neither internal-branch.goX.Y-suffix nor "master":
223215
// maybe some custom branch like "dev.go2go".

0 commit comments

Comments
 (0)