Documentation ¶ Index ¶ type Build type Reader type Source Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Build ¶ type Build struct { ID string `json:"id"` Name string `json:"name"` } Build represents a grouping of jobs. type Reader ¶ type Reader interface { // GetBuildID returns the build id for a given job id. GetBuildID(ctx context.Context, jobID string, buildSource Source) (string, error) } Reader is the interface for requesting build information. type Source ¶ added in v0.92.0 type Source string Source defines the type of test device associated with the job and build. const ( VDC Source = "vdc" RDC Source = "rdc" ) Source Files ¶ View all Source files build.go Click to show internal directories. Click to hide internal directories.