Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(432)

Side by Side Diff: recipes/example/nested.expected/basic.json

Issue 2245113002: Track step nesting in StreamEngine. (Closed) Base URL: https://github.com/luci/recipes-py@emit-initial-properties
Patch Set: Rebase, comments. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « recipes/example/nested.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [], 3 "cmd": [],
4 "name": "complicated thing" 4 "name": "complicated thing"
5 }, 5 },
6 { 6 {
7 "cmd": [], 7 "cmd": [],
8 "name": "complicated thing.first part", 8 "name": "complicated thing.first part",
9 "~followup_annotations": [ 9 "~followup_annotations": [
10 "@@@STEP_NEST_LEVEL@1@@@" 10 "@@@STEP_NEST_LEVEL@1@@@"
11 ] 11 ]
12 }, 12 },
13 { 13 {
14 "cmd": [ 14 "cmd": [
15 "sleep", 15 "sleep",
16 "10" 16 "1"
17 ], 17 ],
18 "name": "complicated thing.first part.wait a bit", 18 "name": "complicated thing.first part.wait a bit",
19 "~followup_annotations": [ 19 "~followup_annotations": [
20 "@@@STEP_NEST_LEVEL@2@@@" 20 "@@@STEP_NEST_LEVEL@2@@@"
21 ] 21 ]
22 }, 22 },
23 { 23 {
24 "cmd": [ 24 "cmd": [
25 "echo", 25 "echo",
26 "herpy" 26 "herpy"
27 ], 27 ],
28 "name": "complicated thing.attempt number.one", 28 "name": "complicated thing.attempt number.one",
29 "~followup_annotations": [ 29 "~followup_annotations": [
30 "@@@STEP_NEST_LEVEL@1@@@" 30 "@@@STEP_NEST_LEVEL@1@@@"
31 ] 31 ]
32 }, 32 },
33 { 33 {
34 "cmd": [ 34 "cmd": [
35 "echo", 35 "echo",
36 "derpy" 36 "derpy"
37 ], 37 ],
38 "name": "complicated thing.attempt number.two", 38 "name": "complicated thing.attempt number.two",
39 "~followup_annotations": [ 39 "~followup_annotations": [
40 "@@@STEP_NEST_LEVEL@1@@@" 40 "@@@STEP_NEST_LEVEL@1@@@"
41 ] 41 ]
42 }, 42 },
43 { 43 {
44 "cmd": [ 44 "cmd": [
45 "sleep", 45 "sleep",
46 "10" 46 "1"
47 ], 47 ],
48 "name": "simple thing" 48 "name": "simple thing"
49 }, 49 },
50 { 50 {
51 "name": "$result", 51 "name": "$result",
52 "recipe_result": null, 52 "recipe_result": null,
53 "status_code": 0 53 "status_code": 0
54 } 54 }
55 ] 55 ]
OLDNEW
« no previous file with comments | « recipes/example/nested.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698