cmd/release: build 1.18 windows-arm64 on Windows 11
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>
diff --git a/cmd/release/release.go b/cmd/release/release.go
index 50057f0..d7769c9 100644
--- a/cmd/release/release.go
+++ b/cmd/release/release.go
@@ -211,13 +211,20 @@
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",
Arch: "amd64",