Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "[BUILD]/scripts/slave/bot_update.py", | 6 "[BUILD]/scripts/slave/bot_update.py", |
| 7 "--master", | 7 "--master", |
| 8 "tryserver.chromium.linux", | 8 "tryserver.chromium.linux", |
| 9 "--builder", | 9 "--builder", |
| 10 "linux_chromium_rel", | 10 "linux_chromium_rel", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 89 ], | 89 ], |
| 90 "cwd": "[SLAVE_BUILD]/src", | 90 "cwd": "[SLAVE_BUILD]/src", |
| 91 "name": "git diff to analyze patch", | 91 "name": "git diff to analyze patch", |
| 92 "stdout": "/path/to/tmp/" | 92 "stdout": "/path/to/tmp/" |
| 93 }, | 93 }, |
| 94 { | 94 { |
| 95 "cmd": [ | 95 "cmd": [ |
| 96 "python", | 96 "python", |
| 97 "-u", | 97 "-u", |
| 98 "[SLAVE_BUILD]/src/build/gyp_chromium", | 98 "[SLAVE_BUILD]/src/build/gyp_chromium", |
| 99 "--analyzer", | 99 "--analyzer2", |
|
iannucci
2014/07/30 01:20:37
is the analyzer2 syntax extensible enough that you
sky
2014/07/30 21:14:16
The reason I went with analyzer2 here is to suppor
| |
| 100 "foo.cc" | 100 "{\"files\": [\"foo.cc\"], \"targets\": []}" |
| 101 ], | 101 ], |
| 102 "name": "analyze", | 102 "name": "analyze", |
| 103 "stdout": "/path/to/tmp/" | 103 "stdout": "/path/to/tmp/json", |
| 104 "~followup_annotations": [ | |
| 105 "@@@STEP_LOG_LINE@json.output@{@@@", | |
| 106 "@@@STEP_LOG_LINE@json.output@ \"status\": \"Found dependency\", @@@", | |
| 107 "@@@STEP_LOG_LINE@json.output@ \"targets\": []@@@", | |
| 108 "@@@STEP_LOG_LINE@json.output@}@@@", | |
| 109 "@@@STEP_LOG_END@json.output@@@" | |
| 110 ] | |
| 104 }, | 111 }, |
| 105 { | 112 { |
| 106 "cmd": [ | 113 "cmd": [ |
| 107 "python", | 114 "python", |
| 108 "-u", | 115 "-u", |
| 109 "[DEPOT_TOOLS]/gclient.py", | 116 "[DEPOT_TOOLS]/gclient.py", |
| 110 "runhooks" | 117 "runhooks" |
| 111 ], | 118 ], |
| 112 "env": { | 119 "env": { |
| 113 "GYP_DEFINES": "component=static_library dcheck_always_on=1 fastbuild=1 go madir='[BUILD]/goma' target_arch=x64 use_goma=1" | 120 "GYP_DEFINES": "component=static_library dcheck_always_on=1 fastbuild=1 go madir='[BUILD]/goma' target_arch=x64 use_goma=1" |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 280 "cmd": [ | 287 "cmd": [ |
| 281 "python", | 288 "python", |
| 282 "-u", | 289 "-u", |
| 283 "[SLAVE_BUILD]/src/mojo/tools/run_mojo_python_tests.py", | 290 "[SLAVE_BUILD]/src/mojo/tools/run_mojo_python_tests.py", |
| 284 "--write-full-results-to", | 291 "--write-full-results-to", |
| 285 "/path/to/tmp/json" | 292 "/path/to/tmp/json" |
| 286 ], | 293 ], |
| 287 "name": "mojo_python_tests (with patch)" | 294 "name": "mojo_python_tests (with patch)" |
| 288 } | 295 } |
| 289 ] | 296 ] |
| OLD | NEW |