(ctx context.Context, originalRawConfig map[string]interface{}, rawConfig map[string]interface{}, resolver variable.Resolver, log log.Logger)
| 28 | type defaultParser struct{} |
| 29 | |
| 30 | func (d *defaultParser) Parse(ctx context.Context, originalRawConfig map[string]interface{}, rawConfig map[string]interface{}, resolver variable.Resolver, log log.Logger) (*latest.Config, map[string]interface{}, error) { |
| 31 | // delete the commands, since we don't need it in a normal scenario |
| 32 | return fillVariablesExcludeAndParse(ctx, resolver, rawConfig, log) |
| 33 | } |
| 34 | |
| 35 | func NewCommandsPipelinesParser() Parser { |
| 36 | return &commandsPipelinesParser{} |
nothing calls this directly
no test coverage detected