Skip to content

Commit 5936c8f

Browse files
heschigopherbot
authored andcommitted
internal/releasetargets: remove windows-arm64 for now
We haven't gotten the new builder up yet. Updates golang/go#57408, golang/go#53541 Change-Id: I4f8b1d96d3f7f7a3080532f5e69b2fa0cf6992e0 Reviewed-on: https://go-review.googlesource.com/c/build/+/460296 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Auto-Submit: Heschi Kreinick <heschi@google.com> Run-TryBot: Heschi Kreinick <heschi@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
1 parent baa973b commit 5936c8f

File tree

3 files changed

+2
-15
lines changed

3 files changed

+2
-15
lines changed

Diff for: internal/releasetargets/releases.txt

-9
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,6 @@ windows-amd64 windows amd64 windows-amd64-2008-oldcc
4545
Race enabled, Long tests on windows-amd64-longtest-oldcc
4646
Running on GCP
4747

48-
windows-arm64 windows arm64 windows-arm64-11
49-
Running on reverse builder: MacStadium mac minis hosting Windows 11 in qemu with HVM acceleration.
50-
5148

5249

5350
Targets for release 1.19
@@ -97,9 +94,6 @@ windows-amd64 windows amd64 windows-amd64-2008-oldcc
9794
Race enabled, Long tests on windows-amd64-longtest-oldcc
9895
Running on GCP
9996

100-
windows-arm64 windows arm64 windows-arm64-11
101-
Running on reverse builder: MacStadium mac minis hosting Windows 11 in qemu with HVM acceleration.
102-
10397

10498

10599
Targets for release 1.20
@@ -146,8 +140,5 @@ windows-amd64 windows amd64 windows-amd64-2008
146140
Long tests on windows-amd64-longtest
147141
Running on GCP
148142

149-
windows-arm64 windows arm64 windows-arm64-11
150-
Running on reverse builder: MacStadium mac minis hosting Windows 11 in qemu with HVM acceleration.
151-
152143

153144

Diff for: internal/releasetargets/releasetargets.go

-4
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,6 @@ var allReleases = map[int]ReleaseTargets{
103103
LongTestBuilder: "windows-amd64-longtest-oldcc",
104104
Race: true,
105105
},
106-
"windows-arm64": &Target{
107-
SecondClass: true,
108-
Builder: "windows-arm64-11",
109-
},
110106
},
111107
19: {
112108
"linux-386": &Target{

Diff for: internal/relui/buildrelease_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -327,9 +327,9 @@ func testRelease(t *testing.T, wantVersion string, kind task.ReleaseKind) {
327327
"go/tool/something_orother/compile": "",
328328
"go/pkg/something_orother/race.a": "",
329329
})
330-
checkZip(t, dlURL, files, "windows-arm64.zip", &task.WebsiteFile{
330+
checkZip(t, dlURL, files, "windows-amd64.zip", &task.WebsiteFile{
331331
OS: "windows",
332-
Arch: "arm64",
332+
Arch: "amd64",
333333
Kind: "archive",
334334
}, map[string]string{
335335
"go/VERSION": wantVersion,

0 commit comments

Comments
 (0)