-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dashboard: disable darwin/386 builder on master
The 32-bit pairs darwin/386 and darwin/arm are removed in Go 1.15, and the master branch is where Go 1.15 is being developed. The builder has started to fail after CL 226985 (as intended), so remove it. Keep it running on Go 1.14 and 1.13 release branches. Also update the misc-compile-darwin builder description. For golang/go#37610. For golang/go#37611. Change-Id: Ia70386c5ae2821b4397048dcb0862a066463d6de Reviewed-on: https://go-review.googlesource.com/c/build/+/227181 Run-TryBot: Dmitri Shuralyov <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Andrew Bonventre <[email protected]>
- Loading branch information
Showing
2 changed files
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -527,9 +527,10 @@ func TestBuilderConfig(t *testing.T) { | |
{b("darwin-amd64-10_11", "go"), none}, | ||
{b("[email protected]", "go"), onlyPost}, // Go 1.14 is the last release that will run on macOS 10.11 El Capitan. | ||
{b("[email protected]", "go"), none}, // Go 1.15 will require macOS 10.12 Sierra or later. | ||
{b("darwin-386-10_14", "go"), onlyPost}, | ||
{b("[email protected]", "go"), none}, | ||
{b("darwin-386-10_14", "go"), none}, | ||
{b("[email protected]", "go"), onlyPost}, | ||
{b("[email protected]", "go"), onlyPost}, // Go 1.14 is the last release that supports 32-bit on macOS. | ||
{b("[email protected]", "go"), none}, | ||
|
||
// plan9 only lived at master. We didn't support any past releases. | ||
// But it's off for now as it's always failing. | ||
|