-
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 nacl builders for the dev.link branch
Updates golang/go#30439 Change-Id: Ic2548709c4a55c2c8b29a4f074bcb3df8292a7c3 Reviewed-on: https://go-review.googlesource.com/c/build/+/200765 Run-TryBot: Brad Fitzpatrick <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Bryan C. Mills <[email protected]>
- Loading branch information
Showing
2 changed files
with
28 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 |
---|---|---|
|
@@ -104,6 +104,30 @@ func TestTrybots(t *testing.T) { | |
"windows-amd64-2016", | ||
}, | ||
}, | ||
{ | ||
repo: "go", | ||
branch: "dev.link", | ||
want: []string{ | ||
"freebsd-amd64-12_0", | ||
"js-wasm", | ||
"linux-386", | ||
"linux-amd64", | ||
"linux-amd64-race", | ||
"misc-compile-other", | ||
"misc-compile-darwin", | ||
"misc-compile-linuxarm", | ||
"misc-compile-solaris", | ||
"misc-compile-freebsd", | ||
"misc-compile-mips", | ||
"misc-compile-netbsd", | ||
"misc-compile-openbsd", | ||
"misc-compile-plan9", | ||
"misc-compile-ppc", | ||
"openbsd-amd64-64", | ||
"windows-386-2008", | ||
"windows-amd64-2016", | ||
}, | ||
}, | ||
{ | ||
repo: "go", | ||
branch: "release-branch.go1.12", | ||
|
@@ -388,9 +412,11 @@ func TestBuilderConfig(t *testing.T) { | |
{b("android-386-emu", "go"), isBuilder}, | ||
|
||
{b("nacl-386", "go"), none}, | ||
{b("[email protected]", "go"), none}, | ||
{b("[email protected]", "go"), onlyPost}, | ||
{b("nacl-386", "net"), none}, | ||
{b("nacl-amd64p32", "go"), none}, | ||
{b("[email protected]", "go"), none}, | ||
{b("[email protected]", "go"), both}, | ||
{b("nacl-amd64p32", "net"), none}, | ||
|
||
|