Skip to content
Snippets Groups Projects

Native Step Runner Integration for Docker Executor

Merged Axel von Bertoldi requested to merge avonbertoldi/47414/steps-integration-docker into main
3 files
+ 2
1
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 1
0
@@ -142,6 +142,7 @@ type FeaturesInfo struct {
ImageExecutorOpts bool `json:"image_executor_opts"`
ServiceExecutorOpts bool `json:"service_executor_opts"`
CancelGracefully bool `json:"cancel_gracefully"`
NativeStepsIntegration bool `json:"native_steps_integration"`
}
type ConfigInfo struct {
@@ -626,7+627,7 @@
switch {
case j.Run == "":
return nil
case slices.ContainsFunc(j.Steps, func(step Step) bool { return len(step.Script) > 0 }):
return fmt.Errorf("the `run` and `script` keywords cannot be used together")
@@ -652,7+653,7 @@
Script: StepScript{"/step-runner ci"},
Timeout: 3600,
When: "on_success",
AllowFailure: false,
}}
return nil
Loading