OLD | NEW |
---|---|
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 Loading... | |
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 ] |
OLD | NEW |