diff options
Diffstat (limited to 'e2e-tests/tools/scatter.scm')
| -rw-r--r-- | e2e-tests/tools/scatter.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/e2e-tests/tools/scatter.scm b/e2e-tests/tools/scatter.scm new file mode 100644 index 0000000..805f4df --- /dev/null +++ b/e2e-tests/tools/scatter.scm @@ -0,0 +1,8 @@ +(define print + (command #:inputs (message #:type string) (other-message #:type string) + #:run "echo" message other-message + #:outputs (printed_output #:type stdout))) + +(workflow ((message #:type string) (other_messages #:type (array string))) + (scatter (print #:message message) + #:other-message other_messages)) |
