From bda439c06f613d16bab35c5f4aae912280178abd Mon Sep 17 00:00:00 2001 From: Dmitry Shulyak Date: Fri, 10 Jul 2015 13:25:00 +0300 Subject: [PATCH 1/2] Add more simple filters and two_path example --- examples/orch/two_path.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 examples/orch/two_path.yml diff --git a/examples/orch/two_path.yml b/examples/orch/two_path.yml new file mode 100644 index 0000000..42c9f9f --- /dev/null +++ b/examples/orch/two_path.yml @@ -0,0 +1,28 @@ +name: two_path +tasks: + - uid: a + parameters: + type: echo + args: [a] + - uid: b + parameters: + type: echo + args: [b] + after: [a] + + + - uid: c + parameters: + type: echo + args: [c] + - uid: d + parameters: + type: echo + args: [d] + after: [c] + + - uid: e + parameters: + type: echo + args: [e] + after: [b,d] From 55670a15e4c4559270f4019ed1c97e51d5c15e25 Mon Sep 17 00:00:00 2001 From: Dmitry Shulyak Date: Fri, 4 Sep 2015 17:20:52 +0300 Subject: [PATCH 2/2] Move two_path.yml example to solar/test --- examples/orch/two_path.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 examples/orch/two_path.yml diff --git a/examples/orch/two_path.yml b/examples/orch/two_path.yml deleted file mode 100644 index 42c9f9f..0000000 --- a/examples/orch/two_path.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: two_path -tasks: - - uid: a - parameters: - type: echo - args: [a] - - uid: b - parameters: - type: echo - args: [b] - after: [a] - - - - uid: c - parameters: - type: echo - args: [c] - - uid: d - parameters: - type: echo - args: [d] - after: [c] - - - uid: e - parameters: - type: echo - args: [e] - after: [b,d]