Documentation ¶
Index ¶
- Constants
- func NewStatusBackoff() *wait.Backoff
- type Builder
- func (b *Builder) Build(ctx context.Context, out io.Writer, tags tag.ImageTags, ...) ([]build.Artifact, error)
- func (b *Builder) DependenciesForArtifact(ctx context.Context, a *latest.Artifact) ([]string, error)
- func (b *Builder) Labels() map[string]string
- func (b *Builder) Prune(ctx context.Context, out io.Writer) error
- func (b *Builder) SyncMap(ctx context.Context, artifact *latest.Artifact) (map[string][]string, error)
Constants ¶
View Source
const ( // StatusUnknown "STATUS_UNKNOWN" - Status of the build is unknown. StatusUnknown = "STATUS_UNKNOWN" // StatusQueued "QUEUED" - Build is queued; work has not yet begun. StatusQueued = "QUEUED" // StatusWorking "WORKING" - Build is being executed. StatusWorking = "WORKING" // StatusSuccess "SUCCESS" - Build finished successfully. StatusSuccess = "SUCCESS" // StatusFailure "FAILURE" - Build failed to complete successfully. StatusFailure = "FAILURE" // StatusInternalError "INTERNAL_ERROR" - Build failed due to an internal cause. StatusInternalError = "INTERNAL_ERROR" // StatusTimeout "TIMEOUT" - Build took longer than was allowed. StatusTimeout = "TIMEOUT" // StatusCancelled "CANCELLED" - Build was canceled by a user. StatusCancelled = "CANCELLED" // RetryDelay is the time to wait in between polling the status of the cloud build RetryDelay = 1 * time.Second // BackoffFactor is the exponent for exponential backoff during build status polling BackoffFactor = 1.5 // BackoffSteps is the number of times we increase the backoff time during exponential backoff BackoffSteps = 10 // RetryTimeout is the max amount of time to retry getting the status of the build before erroring RetryTimeout = 3 * time.Minute )
Variables ¶
This section is empty.
Functions ¶
func NewStatusBackoff ¶ added in v0.37.0
Types ¶
type Builder ¶
type Builder struct { *latest.GoogleCloudBuild // contains filtered or unexported fields }
Builder builds artifacts with Google Cloud Build.
func NewBuilder ¶
func NewBuilder(runCtx *runcontext.RunContext) *Builder
NewBuilder creates a new Builder that builds artifacts with Google Cloud Build.
func (*Builder) Build ¶
func (b *Builder) Build(ctx context.Context, out io.Writer, tags tag.ImageTags, artifacts []*latest.Artifact) ([]build.Artifact, error)
Build builds a list of artifacts with Google Cloud Build.
func (*Builder) DependenciesForArtifact ¶ added in v0.28.0
func (b *Builder) DependenciesForArtifact(ctx context.Context, a *latest.Artifact) ([]string, error)
DependenciesForArtifact returns the dependencies for this artifact
Click to show internal directories.
Click to hide internal directories.