deb-mistral/rally-jobs/extra/nested_wb.yaml
Michal Gershenzon c89c635af1 Add more tests to mistral rally
One more executions test. This one will run a workbook that has a
nested workflow with a join all.

Change-Id: I107eaf3a666a4e07ea9364c4948c74704edc8276
2016-11-08 10:11:09 +00:00

74 lines
1.4 KiB
YAML

---
version: "2.0"
name: wb
workflows:
wrapping_wf:
type: direct
tasks:
call_inner_wf_1:
workflow: inner_wf
call_inner_wf_2:
workflow: inner_wf
call_inner_wf_3:
workflow: inner_wf
call_inner_wf_4:
workflow: inner_wf
inner_wf:
type: direct
tasks:
hello1:
action: std.echo output="Hello"
publish:
result: $
hello2:
action: std.echo output="Hello"
publish:
result: $
on-success:
- world
hello3:
action: std.echo output="Hello"
publish:
result: $
on-success:
- world
hello4:
action: std.echo output="Hello"
publish:
result: $
on-success:
- world
world:
action: std.echo output="World"
join: all
publish:
result: $
on-success:
- test1
- test2
- test3
- test4
test1:
action: std.echo output="Test!!"
publish:
result: $
test2:
action: std.echo output="Test!!"
publish:
result: $
test3:
action: std.echo output="Test!!"
publish:
result: $
test4:
action: std.echo output="Test!!"
publish:
result: $