-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dashboard: only run openbsd-{386,amd64}-62 builders on Go 1.15 and older
For golang/go#42426. Change-Id: Id8a87ef1952291e06f0076f27ae019bf7ef0e6a2 Reviewed-on: https://go-review.googlesource.com/c/build/+/268880 Trust: Dmitri Shuralyov <[email protected]> Run-TryBot: Dmitri Shuralyov <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Alexander Rakoczy <[email protected]>
- Loading branch information
Showing
2 changed files
with
22 additions
and
4 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 |
---|---|---|
|
@@ -396,6 +396,14 @@ func TestBuilderConfig(t *testing.T) { | |
{b("linux-mips64le-mengzhuo", "sys"), onlyPost}, | ||
{b("linux-mips64le-mengzhuo", "net"), onlyPost}, | ||
|
||
// OpenBSD. | ||
{b("[email protected]", "go"), both}, | ||
{b("[email protected]", "go"), both}, | ||
{b("[email protected]", "go"), both}, | ||
{b("[email protected]", "go"), none}, // golang.org/issue/42426. | ||
{b("[email protected]", "go"), onlyPost}, | ||
{b("[email protected]", "go"), onlyPost}, | ||
|
||
// go1.12.html: "Go 1.12 is the last release that is | ||
// supported on FreeBSD 10.x [... and 11.1]" | ||
// But golang.org/issue/40563 happened. | ||
|