-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtest_subrecipes.yml
53 lines (50 loc) · 988 Bytes
/
test_subrecipes.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
cabs:
echo:
command: echo
info: this cab simply echoes the 'message' input
policies:
positional: true
inputs:
message:
default: "running step {info.fqname}"
opts:
log:
dir: test-logs/logs-{config.run.datetime}
nest: 3
symlink: logs
lib:
recipes:
subrecipe:
info: "this is a subrecipe"
steps:
t1-always:
cab: echo
tags: [always]
t2-never-foo:
cab: echo
tags: [never, foo]
t3:
cab: echo
t4-foo-bar:
cab: echo
tags: [foo, bar]
t5-bar:
cab: echo
tags: [bar]
t6-skip:
cab: echo
skip: true
recipe:
info: "this is a top-level recipe to test tags and skips"
steps:
s1:
cab: echo
tags: [always]
s2:
recipe: subrecipe
s3:
recipe: subrecipe
tags: [never, foo]
s4:
recipe: subrecipe
tags: [foo]