build

package
v0.5.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 28, 2015 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Builder

type Builder interface {
	Build(*api.Request) (*api.Result, error)
}

Builder is the interface that provides basic methods all implementation should have. Build method executes the build based on Request and returns the Result.

type Cleaner

type Cleaner interface {
	Cleanup(*api.Request)
}

Cleaner provides the Cleanup method for builders that need to cleanup temporary containers or directories after build execution finish.

type DefaultCleaner

type DefaultCleaner struct {
	util.FileSystem
	docker.Docker
}

DefaultCleaner provides a cleaner for most STI build use-cases. It cleans the temporary directories created by STI build and it also cleans the temporary Docker images produced by LayeredBuild

func (*DefaultCleaner) Cleanup

func (c *DefaultCleaner) Cleanup(request *api.Request)

Cleanup removes the temporary directories where the sources were stored for build.

type Downloader

type Downloader interface {
	Download(*api.Request) error
}

Downloader provides methods for downloading the application source code

type IncrementalBuilder

type IncrementalBuilder interface {
	Exists(*api.Request) bool
	Save(*api.Request) error
}

IncrementalBuilder provides methods that is used for builders that implements the 'incremental' build workflow. The Exists method checks if the artifacts from the previous build exists and if they can be used in the current build. The Save method stores the artifacts for the next build.

type LayeredDockerBuilder

type LayeredDockerBuilder interface {
	Builder
}

LayeredDockerBuilder represents a minimal Docker builder interface that is used to execute the layered Docker build with the application source.

type Preparer

type Preparer interface {
	Prepare(*api.Request) error
}

Preparer provides the Prepare method for builders that need to prepare source code before it gets passed to the build.

type ScriptsHandler

type ScriptsHandler interface {
	Execute(string, *api.Request) error
}

ScriptsHandler provides an interface for executing the scripts

type SourceHandler

type SourceHandler interface {
	Downloader
	Preparer
}

SourceHandler is a wrapper for STI strategy Downloader and Preparer which allows to use Download and Prepare functions from the STI strategy.

Directories

Path Synopsis
sti

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL