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

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

Issue 1923013002: Revert of recipe engine: extract infra-specific paths out of the engine (Closed) Base URL: https://github.com/luci/recipes-py.git@master
Patch Set: Created 4 years, 8 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/defer.expected/one_fail.json ('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 "cwd": "[SLAVE_BUILD]",
4 "name": "complicated thing" 5 "name": "complicated thing"
5 }, 6 },
6 { 7 {
7 "cmd": [], 8 "cmd": [],
9 "cwd": "[SLAVE_BUILD]",
8 "name": "complicated thing.first part", 10 "name": "complicated thing.first part",
9 "~followup_annotations": [ 11 "~followup_annotations": [
10 "@@@STEP_NEST_LEVEL@1@@@" 12 "@@@STEP_NEST_LEVEL@1@@@"
11 ] 13 ]
12 }, 14 },
13 { 15 {
14 "cmd": [ 16 "cmd": [
15 "sleep", 17 "sleep",
16 "10" 18 "10"
17 ], 19 ],
20 "cwd": "[SLAVE_BUILD]",
18 "name": "complicated thing.first part.wait a bit", 21 "name": "complicated thing.first part.wait a bit",
19 "~followup_annotations": [ 22 "~followup_annotations": [
20 "@@@STEP_NEST_LEVEL@2@@@" 23 "@@@STEP_NEST_LEVEL@2@@@"
21 ] 24 ]
22 }, 25 },
23 { 26 {
24 "cmd": [ 27 "cmd": [
25 "echo", 28 "echo",
26 "herpy" 29 "herpy"
27 ], 30 ],
31 "cwd": "[SLAVE_BUILD]",
28 "name": "complicated thing.attempt number.one", 32 "name": "complicated thing.attempt number.one",
29 "~followup_annotations": [ 33 "~followup_annotations": [
30 "@@@STEP_NEST_LEVEL@1@@@" 34 "@@@STEP_NEST_LEVEL@1@@@"
31 ] 35 ]
32 }, 36 },
33 { 37 {
34 "cmd": [ 38 "cmd": [
35 "echo", 39 "echo",
36 "derpy" 40 "derpy"
37 ], 41 ],
42 "cwd": "[SLAVE_BUILD]",
38 "name": "complicated thing.attempt number.two", 43 "name": "complicated thing.attempt number.two",
39 "~followup_annotations": [ 44 "~followup_annotations": [
40 "@@@STEP_NEST_LEVEL@1@@@" 45 "@@@STEP_NEST_LEVEL@1@@@"
41 ] 46 ]
42 }, 47 },
43 { 48 {
44 "cmd": [ 49 "cmd": [
45 "sleep", 50 "sleep",
46 "10" 51 "10"
47 ], 52 ],
53 "cwd": "[SLAVE_BUILD]",
48 "name": "simple thing" 54 "name": "simple thing"
49 }, 55 },
50 { 56 {
51 "name": "$result", 57 "name": "$result",
52 "recipe_result": null, 58 "recipe_result": null,
53 "status_code": 0 59 "status_code": 0
54 } 60 }
55 ] 61 ]
OLDNEW
« no previous file with comments | « recipes/example/defer.expected/one_fail.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698