+2
-1
spindle/config/config.go
+2
-1
spindle/config/config.go
+2
-2
spindle/engine/ansi_stripper.go
+2
-2
spindle/engine/ansi_stripper.go
···const ansi = "[\u001B\u009B][[\\]()#;?]*(?:(?:(?:[a-zA-Z\\d]*(?:;[a-zA-Z\\d]*)*)?\u0007)|(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PRZcf-ntqry=><~]))"
+52
-19
spindle/engine/engine.go
+52
-19
spindle/engine/engine.go
······func (e *Engine) StartSteps(ctx context.Context, steps []models.Step, wid models.WorkflowId, image string) error {······-return fmt.Errorf("error: %s, exit code: %d, oom: %s", state.Error, state.ExitCode, state.OOMKilled)+return fmt.Errorf("error: %s, exit code: %d, oom: %t", state.Error, state.ExitCode, state.OOMKilled)func (e *Engine) WaitStep(ctx context.Context, containerID string) (*container.State, error) {······