-
Notifications
You must be signed in to change notification settings - Fork 13
Closed
Labels
Description
General idea is that different hosts can execute different steps sync or async.
If there is very heavy calculation of something you can run that command on remote host:
Steps maybe or can look something similar like this
- remote("calculate something and return me output") }>
- "i take previous output and do something" }>
- anotherRemote("Do something again") }>
- "save that here"
}> is newly introduced syntax for piping output from one step to another
Reactions are currently unavailable