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

Side by Side Diff: recipe_modules/python/example.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 | « recipe_modules/properties/example.expected/lists.json ('k') | recipe_modules/raw_io/example.py » ('j') | 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 "python", 4 "python",
5 "-u", 5 "-u",
6 "import sys; sys.exit(0)" 6 "import sys; sys.exit(0)"
7 ], 7 ],
8 "cwd": "[SLAVE_BUILD]",
9 "name": "success", 8 "name": "success",
10 "~followup_annotations": [ 9 "~followup_annotations": [
11 "@@@STEP_LOG_LINE@success@This step is a success@@@", 10 "@@@STEP_LOG_LINE@success@This step is a success@@@",
12 "@@@STEP_LOG_END@success@@@" 11 "@@@STEP_LOG_END@success@@@"
13 ] 12 ]
14 }, 13 },
15 { 14 {
16 "cmd": [ 15 "cmd": [
17 "python", 16 "python",
18 "-u", 17 "-u",
19 "import sys; sys.exit(1)" 18 "import sys; sys.exit(1)"
20 ], 19 ],
21 "cwd": "[SLAVE_BUILD]",
22 "name": "failure", 20 "name": "failure",
23 "~followup_annotations": [ 21 "~followup_annotations": [
24 "step returned non-zero exit code: 1", 22 "step returned non-zero exit code: 1",
25 "@@@STEP_TEXT@This step is a failure :(@@@", 23 "@@@STEP_TEXT@This step is a failure :(@@@",
26 "@@@STEP_FAILURE@@@" 24 "@@@STEP_FAILURE@@@"
27 ] 25 ]
28 }, 26 },
29 { 27 {
30 "name": "$result", 28 "name": "$result",
31 "recipe_result": null, 29 "recipe_result": null,
32 "status_code": 0 30 "status_code": 0
33 } 31 }
34 ] 32 ]
OLDNEW
« no previous file with comments | « recipe_modules/properties/example.expected/lists.json ('k') | recipe_modules/raw_io/example.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698