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 "client.v8", | 8 "client.v8", |
9 "--builder", | 9 "--builder", |
10 "Android Nexus4 Perf", | 10 "Android Nexus4 Perf", |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 "[SLAVE_BUILD]/src/build/android/adb_logcat_monitor.py", | 117 "[SLAVE_BUILD]/src/build/android/adb_logcat_monitor.py", |
118 "[SLAVE_BUILD]/src/out/logcat" | 118 "[SLAVE_BUILD]/src/out/logcat" |
119 ], | 119 ], |
120 "env": { | 120 "env": { |
121 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" | 121 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
122 }, | 122 }, |
123 "name": "spawn_logcat_monitor" | 123 "name": "spawn_logcat_monitor" |
124 }, | 124 }, |
125 { | 125 { |
126 "cmd": [ | 126 "cmd": [ |
| 127 "python", |
| 128 "-u", |
| 129 "[BUILD]/scripts/slave/android/authorize_adb_devices.py", |
| 130 "--adb-path", |
| 131 "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools/adb" |
| 132 ], |
| 133 "env": { |
| 134 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 135 }, |
| 136 "name": "authorize_adb_devices" |
| 137 }, |
| 138 { |
| 139 "cmd": [ |
127 "[SLAVE_BUILD]/src/build/android/buildbot/bb_device_status_check.py", | 140 "[SLAVE_BUILD]/src/build/android/buildbot/bb_device_status_check.py", |
128 "--json-output", | 141 "--json-output", |
129 "/path/to/tmp/json" | 142 "/path/to/tmp/json" |
130 ], | 143 ], |
131 "env": { | 144 "env": { |
132 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" | 145 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
133 }, | 146 }, |
134 "name": "device_status_check", | 147 "name": "device_status_check", |
135 "~followup_annotations": [ | 148 "~followup_annotations": [ |
136 "@@@STEP_TEXT@Online devices: 1@@@", | 149 "@@@STEP_TEXT@Online devices: 1@@@", |
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 "@@@STEP_LOG_LINE@python.inline@import glob, os, sys@@@", | 423 "@@@STEP_LOG_LINE@python.inline@import glob, os, sys@@@", |
411 "@@@STEP_LOG_LINE@python.inline@for report in glob.glob(sys.argv[1]):@@@", | 424 "@@@STEP_LOG_LINE@python.inline@for report in glob.glob(sys.argv[1]):@@@", |
412 "@@@STEP_LOG_LINE@python.inline@ with open(report, 'r') as f:@@@", | 425 "@@@STEP_LOG_LINE@python.inline@ with open(report, 'r') as f:@@@", |
413 "@@@STEP_LOG_LINE@python.inline@ for l in f.readlines():@@@", | 426 "@@@STEP_LOG_LINE@python.inline@ for l in f.readlines():@@@", |
414 "@@@STEP_LOG_LINE@python.inline@ print l@@@", | 427 "@@@STEP_LOG_LINE@python.inline@ print l@@@", |
415 "@@@STEP_LOG_LINE@python.inline@ os.remove(report)@@@", | 428 "@@@STEP_LOG_LINE@python.inline@ os.remove(report)@@@", |
416 "@@@STEP_LOG_END@python.inline@@@" | 429 "@@@STEP_LOG_END@python.inline@@@" |
417 ] | 430 ] |
418 } | 431 } |
419 ] | 432 ] |
OLD | NEW |