-
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: include longtest builders for trybots on release branches
The goal of this test policy change is to decrease the chance of a Go repository release branch from getting into a state where some longtest post-submit builders are failing, as this will interfere with the ability to issue releases after golang/go#29252 is fixed. There are not that many CLs sent to release branches, so the extra latency caused by slower longtest builders being a part of trybots should not be very disruptive. For golang/go#37827. For golang/go#29252. Change-Id: I819b120bb7b763df4acf4583375cdb840793d323 Reviewed-on: https://go-review.googlesource.com/c/build/+/235338 Run-TryBot: Dmitri Shuralyov <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Alexander Rakoczy <[email protected]> Reviewed-by: Carlos Amedee <[email protected]>
- Loading branch information
Showing
2 changed files
with
19 additions
and
2 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 |
---|---|---|
|
@@ -158,6 +158,11 @@ func TestTrybots(t *testing.T) { | |
"openbsd-amd64-64", | ||
"windows-386-2008", | ||
"windows-amd64-2016", | ||
|
||
// Include longtest builders on Go repo release branches. See issue 37827. | ||
"linux-386-longtest", | ||
"linux-amd64-longtest", | ||
"windows-amd64-longtest", | ||
}, | ||
}, | ||
{ | ||
|
@@ -459,10 +464,10 @@ func TestBuilderConfig(t *testing.T) { | |
// Long test. | ||
{b("linux-amd64-longtest", "go"), onlyPost}, | ||
{b("linux-amd64-longtest", "net"), onlyPost}, | ||
{b("[email protected]", "go"), onlyPost}, | ||
{b("[email protected]", "go"), both}, | ||
{b("[email protected]", "net"), none}, | ||
{b("windows-amd64-longtest", "go"), onlyPost}, | ||
{b("[email protected]", "go"), onlyPost}, | ||
{b("[email protected]", "go"), both}, | ||
{b("windows-amd64-longtest", "net"), onlyPost}, | ||
{b("windows-amd64-longtest", "exp"), onlyPost}, | ||
{b("windows-amd64-longtest", "mobile"), none}, | ||
|