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

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

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