Documentation ¶
Overview ¶
Package shell provides a middleware to execute commands in a shell
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Middleware ¶ added in v0.32.2
type Middleware struct { ExecutorCreator func() commandExecutor // contains filtered or unexported fields }
Middleware is a shell command runner
func NewMiddleware ¶ added in v0.32.2
func NewMiddleware() Middleware
NewMiddleware creates a new middleware instance
func NewMiddlewareWithExecutorCreator ¶ added in v0.32.2
func NewMiddlewareWithExecutorCreator(executorCreator func() commandExecutor) Middleware
NewMiddlewareWithExecutorCreator creates a new middleware instance with the specified executor creation function
func (Middleware) Apply ¶ added in v0.32.2
func (shellMiddleware Middleware) Apply( run *pipeline.Run, next func(pipelineRun *pipeline.Run), _ *middleware.ExecutionContext, )
Apply is where the middleware's logic resides
It adapts the run based on its slice of the run's arguments. It may also trigger side effects such as executing shell commands or full runs of other pipelines. When done, this function should call next in order to continue unwinding the stack.
func (Middleware) String ¶ added in v0.32.2
func (shellMiddleware Middleware) String() string
String is a human-readable description
Click to show internal directories.
Click to hide internal directories.