P3. Rework execute functions step. Expose step-function to build own executor - #16
Merged
Merged
Conversation
SerhiiRI
force-pushed
the
feat/execute-flow-control
branch
from
August 9, 2026 09:22
0ce5108 to
6e8a3c7
Compare
…ipeline-default/execute-steps/with-execute-context) - ADDED api interface to build own/custom commando/execute - REFACTORED all old pipeline functions were renamed by adding step- prefix before the function name - UPDATED README.md by adding section about control-flow.
SerhiiRI
force-pushed
the
feat/execute-flow-control
branch
from
August 9, 2026 09:23
6e8a3c7 to
bd918ac
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Real life shows me that the internals of status-map is very presios by the many reason. For building UI, for checking something before the execute. To avoid dancing with hooks or parametrization i decide to expose our internal steps outside. That allow to
executefunction safely.Example from the tests.
as You see the problem with injection additional steps almost gone, we allow advanced (controlled) usage with creating self implementation of
steps-pipeline-default, where for example :step-execute-commands! may even been replaced on backend for something more parallel or even group few steps in one to speed up the execution. Status Map kept almost all needed metainformation.