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.webrtc", | 8 "tryserver.webrtc", |
9 "--builder", | 9 "--builder", |
10 "android_rel", | 10 "android_rel", |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 "[SLAVE_BUILD]/src/build/android/adb_logcat_monitor.py", | 125 "[SLAVE_BUILD]/src/build/android/adb_logcat_monitor.py", |
126 "[SLAVE_BUILD]/src/out/logcat" | 126 "[SLAVE_BUILD]/src/out/logcat" |
127 ], | 127 ], |
128 "env": { | 128 "env": { |
129 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" | 129 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
130 }, | 130 }, |
131 "name": "spawn_logcat_monitor" | 131 "name": "spawn_logcat_monitor" |
132 }, | 132 }, |
133 { | 133 { |
134 "cmd": [ | 134 "cmd": [ |
| 135 "python", |
| 136 "-u", |
| 137 "[BUILD]/scripts/slave/android/authorize_adb_devices.py", |
| 138 "--adb-path", |
| 139 "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools/adb" |
| 140 ], |
| 141 "env": { |
| 142 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 143 }, |
| 144 "name": "authorize_adb_devices" |
| 145 }, |
| 146 { |
| 147 "cmd": [ |
135 "[SLAVE_BUILD]/src/build/android/buildbot/bb_device_status_check.py", | 148 "[SLAVE_BUILD]/src/build/android/buildbot/bb_device_status_check.py", |
136 "--json-output", | 149 "--json-output", |
137 "/path/to/tmp/json" | 150 "/path/to/tmp/json" |
138 ], | 151 ], |
139 "env": { | 152 "env": { |
140 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" | 153 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
141 }, | 154 }, |
142 "name": "device_status_check", | 155 "name": "device_status_check", |
143 "~followup_annotations": [ | 156 "~followup_annotations": [ |
144 "@@@STEP_TEXT@Online devices: 1@@@", | 157 "@@@STEP_TEXT@Online devices: 1@@@", |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 "@@@STEP_LOG_LINE@python.inline@import glob, os, sys@@@", | 464 "@@@STEP_LOG_LINE@python.inline@import glob, os, sys@@@", |
452 "@@@STEP_LOG_LINE@python.inline@for report in glob.glob(sys.argv[1]):@@@", | 465 "@@@STEP_LOG_LINE@python.inline@for report in glob.glob(sys.argv[1]):@@@", |
453 "@@@STEP_LOG_LINE@python.inline@ with open(report, 'r') as f:@@@", | 466 "@@@STEP_LOG_LINE@python.inline@ with open(report, 'r') as f:@@@", |
454 "@@@STEP_LOG_LINE@python.inline@ for l in f.readlines():@@@", | 467 "@@@STEP_LOG_LINE@python.inline@ for l in f.readlines():@@@", |
455 "@@@STEP_LOG_LINE@python.inline@ print l@@@", | 468 "@@@STEP_LOG_LINE@python.inline@ print l@@@", |
456 "@@@STEP_LOG_LINE@python.inline@ os.remove(report)@@@", | 469 "@@@STEP_LOG_LINE@python.inline@ os.remove(report)@@@", |
457 "@@@STEP_LOG_END@python.inline@@@" | 470 "@@@STEP_LOG_END@python.inline@@@" |
458 ] | 471 ] |
459 } | 472 } |
460 ] | 473 ] |
OLD | NEW |