2017-03-05 07:56:08 +00:00
|
|
|
package pipeline
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2021-11-26 02:34:48 +00:00
|
|
|
backend "github.com/woodpecker-ci/woodpecker/pipeline/backend/types"
|
2017-03-05 07:56:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Option configures a runtime option.
|
|
|
|
type Option func(*Runtime)
|
|
|
|
|
|
|
|
// WithEngine returns an option configured with a runtime engine.
|
|
|
|
func WithEngine(engine backend.Engine) Option {
|
|
|
|
return func(r *Runtime) {
|
|
|
|
r.engine = engine
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithLogger returns an option configured with a runtime logger.
|
|
|
|
func WithLogger(logger Logger) Option {
|
|
|
|
return func(r *Runtime) {
|
|
|
|
r.logger = logger
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithTracer returns an option configured with a runtime tracer.
|
|
|
|
func WithTracer(tracer Tracer) Option {
|
|
|
|
return func(r *Runtime) {
|
|
|
|
r.tracer = tracer
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithContext returns an option configured with a context.
|
|
|
|
func WithContext(ctx context.Context) Option {
|
|
|
|
return func(r *Runtime) {
|
|
|
|
r.ctx = ctx
|
|
|
|
}
|
|
|
|
}
|
2022-06-15 16:11:20 +00:00
|
|
|
|
|
|
|
func WithDescription(desc map[string]string) Option {
|
|
|
|
return func(r *Runtime) {
|
|
|
|
r.Description = desc
|
|
|
|
}
|
|
|
|
}
|
2023-07-20 18:39:20 +00:00
|
|
|
|
|
|
|
func WithTaskUUID(uuid string) Option {
|
|
|
|
return func(r *Runtime) {
|
|
|
|
r.taskUUID = uuid
|
|
|
|
}
|
|
|
|
}
|