-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dashboard: update Dragonfly tip policy for ABI change, add release bu…
…ilder From golang/go#34958 (comment) : > Go's DragonFly support policy is that we support the latest stable > release primarily, but also try to keep DragonFly master passing, in > prep for it to become the latest stable release. > > But that does mean we need one more builder at the moment. Updates golang/go#34958 Updates golang/go#23060 Change-Id: I84be7c64eac593dee2252c397f9529deea13605a Reviewed-on: https://go-review.googlesource.com/c/build/+/202478 Reviewed-by: Tobias Klauser <[email protected]> Reviewed-by: Bryan C. Mills <[email protected]>
- Loading branch information
Showing
2 changed files
with
25 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -524,6 +524,14 @@ func TestBuilderConfig(t *testing.T) { | |
// that'll never be fixed. | ||
{b("[email protected]", "net"), none}, | ||
{b("[email protected]", "net"), none}, | ||
|
||
{b("dragonfly-amd64", "go"), onlyPost}, | ||
{b("dragonfly-amd64", "net"), onlyPost}, | ||
{b("[email protected]", "net"), none}, // Dragonfly ABI changes only supported by Go 1.14+ | ||
{b("[email protected]", "go"), none}, // Dragonfly ABI changes only supported by Go 1.14+ | ||
{b("dragonfly-amd64-5_6", "go"), onlyPost}, | ||
{b("dragonfly-amd64-5_6", "net"), onlyPost}, | ||
{b("[email protected]", "net"), onlyPost}, | ||
} | ||
for _, tt := range tests { | ||
t.Run(tt.br.testName, func(t *testing.T) { | ||
|