-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserial.flow.yaml
More file actions
37 lines (37 loc) · 1.16 KB
/
serial.flow.yaml
File metadata and controls
37 lines (37 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# yaml-language-server: $schema=https://flowexec.io/schemas/flowfile_schema.json
# DO NOT EDIT - this file was generated by the example builder tool
description: |
Multiple executables can be run in sequence using a serial executable.
executables:
- description: The `execs` field can be used to define the child executables with more options. This includes defining an
executable inline, retries, arguments, and more.
name: serial-config
serial:
execs:
- ref: run flow/examples:simple-print
- args:
- hello
- x=123
ref: run flow/examples:with-args
- cmd: echo 'hello from serial command'
tags:
- serial
verb: start
visibility: private
- aliases:
- serial-exit
description: The `failFast` option can be set to `true` to stop the executable if a sub-executable fails.
name: serial-with-failure
serial:
execs:
- ref: run flow/examples:simple-print
- ref: run flow/examples:with-exit
- ref: run flow/examples:simple-print
failFast: true
tags:
- serial
verb: start
visibility: private
namespace: serial
tags:
- serial