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

Side by Side Diff: recipe_modules/context/examples/full.expected/basic.json

Issue 2985323002: Add support for LUCI_CONTEXT.
Patch Set: Created 3 years, 4 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
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "bash", 4 "bash",
5 "-c", 5 "-c",
6 "echo default!" 6 "echo default!"
7 ], 7 ],
8 "name": "default step" 8 "name": "default step"
9 }, 9 },
10 { 10 {
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 "bash", 106 "bash",
107 "-c", 107 "-c",
108 "echo indent?" 108 "echo indent?"
109 ], 109 ],
110 "name": "indented with wrong name", 110 "name": "indented with wrong name",
111 "~followup_annotations": [ 111 "~followup_annotations": [
112 "@@@STEP_NEST_LEVEL@1@@@" 112 "@@@STEP_NEST_LEVEL@1@@@"
113 ] 113 ]
114 }, 114 },
115 { 115 {
116 "cmd": [
117 "echo",
118 "val"
119 ],
120 "name": "value in the context"
121 },
122 {
123 "cmd": [
124 "echo",
125 "zzz"
126 ],
127 "name": "value in the context (2)"
128 },
iannucci 2017/08/04 18:55:51 the blacklist prevents the luci_config stuff from
129 {
116 "name": "$result", 130 "name": "$result",
117 "recipe_result": null, 131 "recipe_result": null,
118 "status_code": 0 132 "status_code": 0
119 } 133 }
120 ] 134 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698