Skip to content

Commit

Permalink
cmd/release: build 1.18 windows-arm64 on Windows 11
Browse files Browse the repository at this point in the history
We'll do this for RC1. If it causes trouble we can revert it.

I've verified we can still build a release.

Fixes golang/go#51085.

Change-Id: I31a5d5378756d46f8acb79955fd2ca413cf61de8
Reviewed-on: https://go-review.googlesource.com/c/build/+/385714
Trust: Heschi Kreinick <heschi@google.com>
Run-TryBot: Heschi Kreinick <heschi@google.com>
Reviewed-by: Alex Rakoczy <alex@golang.org>
Auto-Submit: Heschi Kreinick <heschi@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
  • Loading branch information
heschi authored and gopherbot committed Feb 14, 2022
1 parent 75546d9 commit 9277cbb
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion cmd/release/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -211,12 +211,19 @@ var builds = []*Build{
Builder: "windows-amd64-2008",
},
{
GoQuery: ">= go1.17beta1", // Go 1.17 Beta 1 is the first Go (pre-)release with the windows/arm64 port.
GoQuery: ">= go1.17beta1 && < go1.18beta1", // Go 1.17 Beta 1 is the first Go (pre-)release with the windows/arm64 port.
OS: "windows",
Arch: "arm64",
Race: false, // Not supported as of 2021-06-01.
Builder: "windows-arm64-10",
},
{
GoQuery: ">= go1.18beta1", // Go 1.17 Beta 1 is the first Go (pre-)release with the windows/arm64 port.
OS: "windows",
Arch: "arm64",
Race: false, // Not supported as of 2021-06-01.
Builder: "windows-arm64-11",
},
{
GoQuery: ">= go1.18beta1", // Start exercising a macOS 12 releaselet as of Go 1.18 Beta 1; see issue 40561.
OS: "darwin",
Expand Down

0 comments on commit 9277cbb

Please sign in to comment.