You've already forked woodpecker
mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-11-23 21:44:44 +02:00
Move cncd/pipeline/pipeline/ to pipeline/ (#347)
* Refactor: move cncd/pipeline/ to pipeline/ * Refactor: move pipeline/pipeline/ to pipeline/
This commit is contained in:
24
pipeline/backend/backend.go
Normal file
24
pipeline/backend/backend.go
Normal file
@@ -0,0 +1,24 @@
|
||||
package backend
|
||||
|
||||
import (
|
||||
"context"
|
||||
"io"
|
||||
)
|
||||
|
||||
// Engine defines a container orchestration backend and is used
|
||||
// to create and manage container resources.
|
||||
type Engine interface {
|
||||
// Setup the pipeline environment.
|
||||
Setup(context.Context, *Config) error
|
||||
// Start the pipeline step.
|
||||
Exec(context.Context, *Step) error
|
||||
// Kill the pipeline step.
|
||||
Kill(context.Context, *Step) error
|
||||
// Wait for the pipeline step to complete and returns
|
||||
// the completion results.
|
||||
Wait(context.Context, *Step) (*State, error)
|
||||
// Tail the pipeline step logs.
|
||||
Tail(context.Context, *Step) (io.ReadCloser, error)
|
||||
// Destroy the pipeline environment.
|
||||
Destroy(context.Context, *Config) error
|
||||
}
|
||||
Reference in New Issue
Block a user