You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to add support for pipelines, we could add a new entry in the root of the file for pipelines .. and create pipelines using any of the targets. Example:
version: 1.0.0groups:
main:
env-file: .envtargets:
read:
help: Read fileargs:
filepath:
type: stringdefault:
run: cat {{ args.filepath }}count:
help: Counts the number of lines in the input.run: wc -lpipelines:
count-lines-myfile:
help:
tasks:
- target: main.readargs:
filepath: /tmp/myfile.txt
- target: main.count
makim could have an option to visualize the graph of the pipelines, maybe using asciinet. Example of a CLI call:
$ makim pipeline run count-lines-myfile
$ makim pipeline show count-lines-myfile
The text was updated successfully, but these errors were encountered:
In order to add support for pipelines, we could add a new entry in the root of the file for pipelines .. and create pipelines using any of the targets. Example:
makim could have an option to visualize the graph of the pipelines, maybe using
asciinet
. Example of a CLI call:The text was updated successfully, but these errors were encountered: