-
-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
Description
Description
Implement parallel execution for parallel blocks within steps.
Acceptance Criteria
- Execute items in
parallelblock concurrently - Wait for all parallel items to complete before continuing
- Handle output from parallel tasks (interleave or buffer)
- Report failures from parallel execution
- Decide on fail-fast vs. wait-for-all behavior
Example
build-all:
steps:
- cmd: echo "Starting builds"
- parallel:
- dir: services/api
task: build
- dir: services/web
task: build
- cmd: echo "Done"