Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetConsoleSummariesFromDefs ¶
func GetConsoleSummariesFromDefs(c context.Context, consoleEnts []*common.Console, projectID string) ( map[common.ConsoleID]*ui.BuilderSummaryGroup, error)
GetConsoleSummariesFromDefs returns a map of consoleID -> summary from the datastore using a slice of console definitions as input.
This expects all builders in all consoles coming from the same projectID.
Types ¶
type BuilderID ¶
type BuilderID string
BuilderID is the universal ID of a builder, and has the form:
buildbucket/bucket/builder buildbot/master/builder
func (BuilderID) Buildbot ¶
Buildbot returns true iff this BuilderID originates from a buildbot builder.
func (BuilderID) Get ¶
Get allows you to obtain the resp.Builder that corresponds with this BuilderID.
type ConsoleRow ¶
type ConsoleRow struct { Commit string Builds map[int][]*model.BuildSummary }
ConsoleRow is one row of a particular console.
It has the git commit for the row, as well as a mapping of column index to the Builds associated with it for this commit. The columns are defined by the order of the Builder messages in the Console config message (one column per Builder message).
Builds is a map since most commit rows have a small subset of the available builders.
func GetConsoleRows ¶
func GetConsoleRows(c context.Context, project string, console *config.Console, commits []string) ([]*ConsoleRow, error)
GetConsoleRows returns a row-oriented collection of BuildSummary objects. Each row corresponds to the similarly-indexed commit in the `commits` slice.
type ID ¶
type ID interface { Get(c context.Context) (*ui.MiloBuild, error) // GetLog is only implemented by swarming; this is for serving the deprecated // swarming/task/<id>/steps/<logname> // API. Once that's removed, this should be removed as well. GetLog(c context.Context, logname string) (text string, closed bool, err error) }
ID represents a universal 'build' ID. Each subpackage of buildsource implements an ID (as the type BuildID, e.g. swarming.BuildID), which has buildsource-specific fields, but always implements this ID interface.
The frontend constructs an ID from the appropriate buildsource, then calls its .Get() method to get the generic MiloBuild representation.
Directories ¶
Path | Synopsis |
---|---|
buildstore
Package buildstore implements storage of //milo/api/buildbot/* types.
|
Package buildstore implements storage of //milo/api/buildbot/* types. |