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

Side by Side Diff: recipe_modules/step/example.expected/warning.json

Issue 1344583003: Recipe package system. (Closed) Base URL: git@github.com:luci/recipes-py.git@master
Patch Set: Recompiled proto Created 5 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 | « recipe_modules/step/example.expected/invalid_access.json ('k') | recipes.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 "echo", 4 "echo",
5 "Hello World" 5 "Hello World"
6 ], 6 ],
7 "cwd": "[SLAVE_BUILD]", 7 "cwd": "[SLAVE_BUILD]",
8 "name": "hello" 8 "name": "hello"
9 }, 9 },
10 { 10 {
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 "cmd": [ 54 "cmd": [
55 "echo", 55 "echo",
56 "goodbye" 56 "goodbye"
57 ], 57 ],
58 "cwd": "[SLAVE_BUILD]", 58 "cwd": "[SLAVE_BUILD]",
59 "name": "goodbye (2)" 59 "name": "goodbye (2)"
60 }, 60 },
61 { 61 {
62 "cmd": [ 62 "cmd": [
63 "echo", 63 "echo",
64 "testa" 64 "warning"
65 ], 65 ],
66 "cwd": "[SLAVE_BUILD]", 66 "cwd": "[SLAVE_BUILD]",
67 "name": "testa", 67 "name": "warning",
68 "~followup_annotations": [ 68 "~followup_annotations": [
69 "step returned non-zero exit code: 1", 69 "step returned non-zero exit code: 1",
70 "@@@STEP_FAILURE@@@" 70 "@@@STEP_WARNINGS@@@"
71 ] 71 ]
72 }, 72 },
73 { 73 {
74 "cmd": [
75 "echo",
76 "testb"
77 ],
78 "cwd": "[SLAVE_BUILD]",
79 "name": "testb"
80 },
81 {
82 "name": "$final_result", 74 "name": "$final_result",
83 "reason": "You can catch step failures.", 75 "reason": "Step('warning') failed with return_code 1",
84 "status_code": 1 76 "status_code": 1
85 } 77 }
86 ] 78 ]
OLDNEW
« no previous file with comments | « recipe_modules/step/example.expected/invalid_access.json ('k') | recipes.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698