Skip to content

Commit

Permalink
internal/releasetargets: remove windows-arm64 for now
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
heschi authored and gopherbot committed Jan 3, 2023
1 parent baa973b commit 5936c8f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 15 deletions.
9 changes: 0 additions & 9 deletions internal/releasetargets/releases.txt
Expand Up @@ -45,9 +45,6 @@ windows-amd64 windows amd64 windows-amd64-2008-oldcc
Race enabled, Long tests on windows-amd64-longtest-oldcc
Running on GCP

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



Targets for release 1.19
Expand Down Expand Up @@ -97,9 +94,6 @@ windows-amd64 windows amd64 windows-amd64-2008-oldcc
Race enabled, Long tests on windows-amd64-longtest-oldcc
Running on GCP

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



Targets for release 1.20
Expand Down Expand Up @@ -146,8 +140,5 @@ windows-amd64 windows amd64 windows-amd64-2008
Long tests on windows-amd64-longtest
Running on GCP

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



4 changes: 0 additions & 4 deletions internal/releasetargets/releasetargets.go
Expand Up @@ -103,10 +103,6 @@ var allReleases = map[int]ReleaseTargets{
LongTestBuilder: "windows-amd64-longtest-oldcc",
Race: true,
},
"windows-arm64": &Target{
SecondClass: true,
Builder: "windows-arm64-11",
},
},
19: {
"linux-386": &Target{
Expand Down
4 changes: 2 additions & 2 deletions internal/relui/buildrelease_test.go
Expand Up @@ -327,9 +327,9 @@ func testRelease(t *testing.T, wantVersion string, kind task.ReleaseKind) {
"go/tool/something_orother/compile": "",
"go/pkg/something_orother/race.a": "",
})
checkZip(t, dlURL, files, "windows-arm64.zip", &task.WebsiteFile{
checkZip(t, dlURL, files, "windows-amd64.zip", &task.WebsiteFile{
OS: "windows",
Arch: "arm64",
Arch: "amd64",
Kind: "archive",
}, map[string]string{
"go/VERSION": wantVersion,
Expand Down

0 comments on commit 5936c8f

Please sign in to comment.