| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", | 6 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", |
| 7 "--master", | 7 "--master", |
| 8 "tryserver.webrtc", | 8 "tryserver.webrtc", |
| 9 "--builder", | 9 "--builder", |
| 10 "android_dbg", | 10 "android_dbg", |
| 11 "--slave", | 11 "--slave", |
| 12 "slavename", | 12 "slavename", |
| 13 "--spec", | 13 "--spec", |
| 14 "cache_dir = '[ROOT]/b/build/slave/cache_dir'\nsolutions = [{'deps_file':
'DEPS', 'managed': True, 'name': 'src', 'url': 'https://chromium.googlesource.co
m/external/webrtc'}, {'deps_file': 'DEPS', 'managed': True, 'name': 'webrtc-limi
ted', 'url': 'https://chrome-internal.googlesource.com/chrome/deps/webrtc-limite
d'}]\ntarget_os = ['android']", | 14 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': 'DEPS', 'managed':
True, 'name': 'src', 'url': 'https://chromium.googlesource.com/external/webrtc'}
, {'deps_file': 'DEPS', 'managed': True, 'name': 'webrtc-limited', 'url': 'https
://chrome-internal.googlesource.com/chrome/deps/webrtc-limited'}]\ntarget_os = [
'android']", |
| 15 "--root", | 15 "--root", |
| 16 "src", | 16 "src", |
| 17 "--revision_mapping_file", | 17 "--revision_mapping_file", |
| 18 "{\"src\": \"got_revision\"}", | 18 "{\"src\": \"got_revision\"}", |
| 19 "--git-cache-dir", | 19 "--git-cache-dir", |
| 20 "[ROOT]/b/build/slave/cache_dir", | 20 "[GIT_CACHE]", |
| 21 "--issue", | 21 "--issue", |
| 22 "666666", | 22 "666666", |
| 23 "--patchset", | 23 "--patchset", |
| 24 "1", | 24 "1", |
| 25 "--rietveld_server", | 25 "--rietveld_server", |
| 26 "https://fake.rietveld.url", | 26 "https://fake.rietveld.url", |
| 27 "--output_json", | 27 "--output_json", |
| 28 "/path/to/tmp/json", | 28 "/path/to/tmp/json", |
| 29 "--revision", | 29 "--revision", |
| 30 "src@12345", | 30 "src@12345", |
| 31 "--output_manifest" | 31 "--output_manifest" |
| 32 ], | 32 ], |
| 33 "cwd": "[SLAVE_BUILD]", |
| 33 "env": { | 34 "env": { |
| 34 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 35 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 35 }, | 36 }, |
| 36 "name": "bot_update", | 37 "name": "bot_update", |
| 37 "~followup_annotations": [ | 38 "~followup_annotations": [ |
| 38 "@@@STEP_TEXT@Some step text@@@", | 39 "@@@STEP_TEXT@Some step text@@@", |
| 39 "@@@STEP_LOG_LINE@json.output@{@@@", | 40 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 40 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", | 41 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", |
| 41 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", | 42 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", |
| 42 "@@@STEP_LOG_LINE@json.output@ \"src\": \"12345\"@@@", | 43 "@@@STEP_LOG_LINE@json.output@ \"src\": \"12345\"@@@", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 59 "@@@STEP_LOG_END@json.output@@@", | 60 "@@@STEP_LOG_END@json.output@@@", |
| 60 "@@@SET_BUILD_PROPERTY@got_revision@\"f27fede2220bcd326aee3e86ddfd4ebd0fe5
8cb9\"@@@", | 61 "@@@SET_BUILD_PROPERTY@got_revision@\"f27fede2220bcd326aee3e86ddfd4ebd0fe5
8cb9\"@@@", |
| 61 "@@@SET_BUILD_PROPERTY@got_revision_cp@\"refs/heads/master@{#170242}\"@@@" | 62 "@@@SET_BUILD_PROPERTY@got_revision_cp@\"refs/heads/master@{#170242}\"@@@" |
| 62 ] | 63 ] |
| 63 }, | 64 }, |
| 64 { | 65 { |
| 65 "cmd": [ | 66 "cmd": [ |
| 66 "python", | 67 "python", |
| 67 "-u", | 68 "-u", |
| 68 "RECIPE_MODULE[build::webrtc]/resources/cleanup_files.py", | 69 "RECIPE_MODULE[build::webrtc]/resources/cleanup_files.py", |
| 69 "[CWD]/src/out" | 70 "[SLAVE_BUILD]/src/out" |
| 70 ], | 71 ], |
| 72 "cwd": "[SLAVE_BUILD]", |
| 71 "name": "clean test output files" | 73 "name": "clean test output files" |
| 72 }, | 74 }, |
| 73 { | 75 { |
| 74 "cmd": [ | 76 "cmd": [ |
| 75 "python", | 77 "python", |
| 76 "-u", | 78 "-u", |
| 77 "\nimport shutil, sys, os\nshutil.rmtree(sys.argv[1], True)\nshutil.rmtree
(sys.argv[2], True)\ntry:\n os.remove(sys.argv[3])\nexcept OSError:\n pass\nfo
r base, _dirs, files in os.walk(sys.argv[4]):\n for f in files:\n if f.endsw
ith('.pyc'):\n os.remove(os.path.join(base, f))\n", | 79 "\nimport shutil, sys, os\nshutil.rmtree(sys.argv[1], True)\nshutil.rmtree
(sys.argv[2], True)\ntry:\n os.remove(sys.argv[3])\nexcept OSError:\n pass\nfo
r base, _dirs, files in os.walk(sys.argv[4]):\n for f in files:\n if f.endsw
ith('.pyc'):\n os.remove(os.path.join(base, f))\n", |
| 78 "[CWD]/src/out/Debug/debug_info_dumps", | 80 "[SLAVE_BUILD]/src/out/Debug/debug_info_dumps", |
| 79 "[CWD]/src/out/Debug/test_logs", | 81 "[SLAVE_BUILD]/src/out/Debug/test_logs", |
| 80 "[CWD]/src/out/build_product.zip", | 82 "[SLAVE_BUILD]/src/out/build_product.zip", |
| 81 "[CWD]/src" | 83 "[SLAVE_BUILD]/src" |
| 82 ], | 84 ], |
| 85 "cwd": "[SLAVE_BUILD]", |
| 83 "name": "clean local files", | 86 "name": "clean local files", |
| 84 "~followup_annotations": [ | 87 "~followup_annotations": [ |
| 85 "@@@STEP_LOG_LINE@python.inline@@@@", | 88 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 86 "@@@STEP_LOG_LINE@python.inline@import shutil, sys, os@@@", | 89 "@@@STEP_LOG_LINE@python.inline@import shutil, sys, os@@@", |
| 87 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[1], True)@@@", | 90 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[1], True)@@@", |
| 88 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[2], True)@@@", | 91 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[2], True)@@@", |
| 89 "@@@STEP_LOG_LINE@python.inline@try:@@@", | 92 "@@@STEP_LOG_LINE@python.inline@try:@@@", |
| 90 "@@@STEP_LOG_LINE@python.inline@ os.remove(sys.argv[3])@@@", | 93 "@@@STEP_LOG_LINE@python.inline@ os.remove(sys.argv[3])@@@", |
| 91 "@@@STEP_LOG_LINE@python.inline@except OSError:@@@", | 94 "@@@STEP_LOG_LINE@python.inline@except OSError:@@@", |
| 92 "@@@STEP_LOG_LINE@python.inline@ pass@@@", | 95 "@@@STEP_LOG_LINE@python.inline@ pass@@@", |
| 93 "@@@STEP_LOG_LINE@python.inline@for base, _dirs, files in os.walk(sys.argv
[4]):@@@", | 96 "@@@STEP_LOG_LINE@python.inline@for base, _dirs, files in os.walk(sys.argv
[4]):@@@", |
| 94 "@@@STEP_LOG_LINE@python.inline@ for f in files:@@@", | 97 "@@@STEP_LOG_LINE@python.inline@ for f in files:@@@", |
| 95 "@@@STEP_LOG_LINE@python.inline@ if f.endswith('.pyc'):@@@", | 98 "@@@STEP_LOG_LINE@python.inline@ if f.endswith('.pyc'):@@@", |
| 96 "@@@STEP_LOG_LINE@python.inline@ os.remove(os.path.join(base, f))@@@"
, | 99 "@@@STEP_LOG_LINE@python.inline@ os.remove(os.path.join(base, f))@@@"
, |
| 97 "@@@STEP_LOG_END@python.inline@@@" | 100 "@@@STEP_LOG_END@python.inline@@@" |
| 98 ] | 101 ] |
| 99 }, | 102 }, |
| 100 { | 103 { |
| 101 "cmd": [ | 104 "cmd": [ |
| 102 "python", | 105 "python", |
| 103 "-u", | 106 "-u", |
| 104 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 107 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 105 "runhooks" | 108 "runhooks" |
| 106 ], | 109 ], |
| 110 "cwd": "[SLAVE_BUILD]", |
| 107 "env": { | 111 "env": { |
| 108 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 112 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 109 "GYP_CROSSCOMPILE": "1", | 113 "GYP_CROSSCOMPILE": "1", |
| 110 "GYP_DEFINES": "OS=android component=static_library dcheck_always_on=1 fas
tbuild=1 gomadir='[ROOT]/b/build/goma' target_arch=arm use_goma=1", | 114 "GYP_DEFINES": "OS=android component=static_library dcheck_always_on=1 fas
tbuild=1 gomadir='[BUILD]/goma' target_arch=arm use_goma=1", |
| 111 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 115 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 112 }, | 116 }, |
| 113 "name": "gclient runhooks" | 117 "name": "gclient runhooks" |
| 114 }, | 118 }, |
| 115 { | 119 { |
| 116 "cmd": [ | 120 "cmd": [ |
| 117 "python", | 121 "python", |
| 118 "-u", | 122 "-u", |
| 119 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py", | 123 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py", |
| 120 "--show-path", | 124 "--show-path", |
| 121 "python", | 125 "python", |
| 122 "RECIPE_PACKAGE_REPO[build]/scripts/slave/compile.py", | 126 "RECIPE_PACKAGE_REPO[build]/scripts/slave/compile.py", |
| 123 "--gsutil-py-path", | 127 "--gsutil-py-path", |
| 124 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py", | 128 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py", |
| 125 "--ninja-path", | 129 "--ninja-path", |
| 126 "RECIPE_PACKAGE_REPO[depot_tools]/ninja", | 130 "RECIPE_PACKAGE_REPO[depot_tools]/ninja", |
| 127 "--target", | 131 "--target", |
| 128 "Debug", | 132 "Debug", |
| 129 "--src-dir", | 133 "--src-dir", |
| 130 "[CWD]/src", | 134 "[SLAVE_BUILD]/src", |
| 131 "--goma-cache-dir", | 135 "--goma-cache-dir", |
| 132 "[ROOT]/b/build/slave/goma_cache", | 136 "[GOMA_CACHE]", |
| 133 "--build-tool", | 137 "--build-tool", |
| 134 "ninja", | 138 "ninja", |
| 135 "--compiler", | 139 "--compiler", |
| 136 "goma", | 140 "goma", |
| 137 "--goma-jsonstatus", | 141 "--goma-jsonstatus", |
| 138 "/path/to/tmp/json", | 142 "/path/to/tmp/json", |
| 139 "--goma-service-account-json-file", | 143 "--goma-service-account-json-file", |
| 140 "/creds/service_accounts/service-account-goma-client.json", | 144 "/creds/service_accounts/service-account-goma-client.json", |
| 141 "--goma-dir", | 145 "--goma-dir", |
| 142 "[ROOT]/b/build/goma", | 146 "[BUILD]/goma", |
| 143 "--goma-fail-fast", | 147 "--goma-fail-fast", |
| 144 "--goma-disable-local-fallback", | 148 "--goma-disable-local-fallback", |
| 145 "--" | 149 "--" |
| 146 ], | 150 ], |
| 151 "cwd": "[SLAVE_BUILD]", |
| 147 "env": { | 152 "env": { |
| 148 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 153 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 149 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 154 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 150 }, | 155 }, |
| 151 "name": "compile", | 156 "name": "compile", |
| 152 "~followup_annotations": [ | 157 "~followup_annotations": [ |
| 153 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@", | 158 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@", |
| 154 "@@@STEP_LOG_END@json.output (invalid)@@@" | 159 "@@@STEP_LOG_END@json.output (invalid)@@@" |
| 155 ] | 160 ] |
| 156 }, | 161 }, |
| 157 { | 162 { |
| 158 "cmd": [ | 163 "cmd": [ |
| 159 "python", | 164 "python", |
| 160 "-u", | 165 "-u", |
| 161 "[CWD]/src/build/symlink.py", | 166 "[SLAVE_BUILD]/src/build/symlink.py", |
| 162 "-f", | 167 "-f", |
| 163 "[CWD]/src/third_party/android_tools/sdk/platform-tools/adb", | 168 "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools/adb", |
| 164 "~/adb" | 169 "~/adb" |
| 165 ], | 170 ], |
| 171 "cwd": "[SLAVE_BUILD]", |
| 166 "name": "create adb symlink" | 172 "name": "create adb symlink" |
| 167 }, | 173 }, |
| 168 { | 174 { |
| 169 "cmd": [ | 175 "cmd": [ |
| 170 "RECIPE_PACKAGE_REPO[build]/scripts/slave/daemonizer.py", | 176 "RECIPE_PACKAGE_REPO[build]/scripts/slave/daemonizer.py", |
| 171 "--", | 177 "--", |
| 172 "[CWD]/src/build/android/adb_logcat_monitor.py", | 178 "[SLAVE_BUILD]/src/build/android/adb_logcat_monitor.py", |
| 173 "[CWD]/src/out/logcat" | 179 "[SLAVE_BUILD]/src/out/logcat" |
| 174 ], | 180 ], |
| 181 "cwd": "[SLAVE_BUILD]", |
| 175 "env": { | 182 "env": { |
| 176 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 183 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 177 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 184 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 178 }, | 185 }, |
| 179 "name": "spawn_logcat_monitor" | 186 "name": "spawn_logcat_monitor" |
| 180 }, | 187 }, |
| 181 { | 188 { |
| 182 "cmd": [ | 189 "cmd": [ |
| 183 "python", | 190 "python", |
| 184 "-u", | 191 "-u", |
| 185 "RECIPE_PACKAGE_REPO[build]/scripts/slave/android/authorize_adb_devices.py
", | 192 "RECIPE_PACKAGE_REPO[build]/scripts/slave/android/authorize_adb_devices.py
", |
| 186 "--verbose", | 193 "--verbose", |
| 187 "--adb-path", | 194 "--adb-path", |
| 188 "[CWD]/src/third_party/android_tools/sdk/platform-tools/adb" | 195 "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools/adb" |
| 189 ], | 196 ], |
| 197 "cwd": "[SLAVE_BUILD]", |
| 190 "env": { | 198 "env": { |
| 191 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 199 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 192 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 200 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 193 }, | 201 }, |
| 194 "name": "authorize_adb_devices" | 202 "name": "authorize_adb_devices" |
| 195 }, | 203 }, |
| 196 { | 204 { |
| 197 "cmd": [ | 205 "cmd": [ |
| 198 "[CWD]/src/build/android/buildbot/bb_device_status_check.py", | 206 "[SLAVE_BUILD]/src/build/android/buildbot/bb_device_status_check.py", |
| 199 "--json-output", | 207 "--json-output", |
| 200 "/path/to/tmp/json", | 208 "/path/to/tmp/json", |
| 201 "--blacklist-file", | 209 "--blacklist-file", |
| 202 "[CWD]/src/out/bad_devices.json", | 210 "[SLAVE_BUILD]/src/out/bad_devices.json", |
| 203 "--known-devices-file", | 211 "--known-devices-file", |
| 204 "[ROOT]/b/build/site_config/.known_devices" | 212 "[BUILD]/site_config/.known_devices" |
| 205 ], | 213 ], |
| 214 "cwd": "[SLAVE_BUILD]", |
| 206 "env": { | 215 "env": { |
| 207 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 216 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 208 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 217 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 209 }, | 218 }, |
| 210 "name": "device_status_check", | 219 "name": "device_status_check", |
| 211 "~followup_annotations": [ | 220 "~followup_annotations": [ |
| 212 "@@@STEP_TEXT@Online devices: 1@@@", | 221 "@@@STEP_TEXT@Online devices: 1@@@", |
| 213 "@@@STEP_LOG_LINE@json.output@[@@@", | 222 "@@@STEP_LOG_LINE@json.output@[@@@", |
| 214 "@@@STEP_LOG_LINE@json.output@ {@@@", | 223 "@@@STEP_LOG_LINE@json.output@ {@@@", |
| 215 "@@@STEP_LOG_LINE@json.output@ \"adb_status\": \"device\", @@@", | 224 "@@@STEP_LOG_LINE@json.output@ \"adb_status\": \"device\", @@@", |
| 216 "@@@STEP_LOG_LINE@json.output@ \"battery\": {@@@", | 225 "@@@STEP_LOG_LINE@json.output@ \"battery\": {@@@", |
| 217 "@@@STEP_LOG_LINE@json.output@ \"AC powered\": \"false\", @@@", | 226 "@@@STEP_LOG_LINE@json.output@ \"AC powered\": \"false\", @@@", |
| 218 "@@@STEP_LOG_LINE@json.output@ \"USB powered\": \"true\", @@@", | 227 "@@@STEP_LOG_LINE@json.output@ \"USB powered\": \"true\", @@@", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 "@@@STEP_LOG_LINE@03e0363a003c6ad6: blacklisted@ \"serial\": \"03e0363a00
3c6ad6\", @@@", | 309 "@@@STEP_LOG_LINE@03e0363a003c6ad6: blacklisted@ \"serial\": \"03e0363a00
3c6ad6\", @@@", |
| 301 "@@@STEP_LOG_LINE@03e0363a003c6ad6: blacklisted@ \"usb_status\": true@@@"
, | 310 "@@@STEP_LOG_LINE@03e0363a003c6ad6: blacklisted@ \"usb_status\": true@@@"
, |
| 302 "@@@STEP_LOG_LINE@03e0363a003c6ad6: blacklisted@}@@@", | 311 "@@@STEP_LOG_LINE@03e0363a003c6ad6: blacklisted@}@@@", |
| 303 "@@@STEP_LOG_END@03e0363a003c6ad6: blacklisted@@@" | 312 "@@@STEP_LOG_END@03e0363a003c6ad6: blacklisted@@@" |
| 304 ] | 313 ] |
| 305 }, | 314 }, |
| 306 { | 315 { |
| 307 "cmd": [ | 316 "cmd": [ |
| 308 "python", | 317 "python", |
| 309 "-u", | 318 "-u", |
| 310 "[CWD]/src/build/android/provision_devices.py", | 319 "[SLAVE_BUILD]/src/build/android/provision_devices.py", |
| 311 "-t", | 320 "-t", |
| 312 "Debug", | 321 "Debug", |
| 313 "--blacklist-file", | 322 "--blacklist-file", |
| 314 "[CWD]/src/out/bad_devices.json", | 323 "[SLAVE_BUILD]/src/out/bad_devices.json", |
| 315 "--output-device-blacklist", | 324 "--output-device-blacklist", |
| 316 "/path/to/tmp/json" | 325 "/path/to/tmp/json" |
| 317 ], | 326 ], |
| 327 "cwd": "[SLAVE_BUILD]", |
| 318 "env": { | 328 "env": { |
| 319 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 329 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 320 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 330 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 321 }, | 331 }, |
| 322 "name": "provision_devices" | 332 "name": "provision_devices" |
| 323 }, | 333 }, |
| 324 { | 334 { |
| 325 "cmd": [ | 335 "cmd": [ |
| 326 "python", | 336 "python", |
| 327 "-u", | 337 "-u", |
| 328 "RECIPE_PACKAGE_REPO[build]/scripts/slave/daemonizer.py", | 338 "RECIPE_PACKAGE_REPO[build]/scripts/slave/daemonizer.py", |
| 329 "--action", | 339 "--action", |
| 330 "restart", | 340 "restart", |
| 331 "--pid-file-path", | 341 "--pid-file-path", |
| 332 "/tmp/device_monitor.pid", | 342 "/tmp/device_monitor.pid", |
| 333 "--", | 343 "--", |
| 334 "RECIPE_MODULE[build::chromium_android]/resources/spawn_device_monitor.py"
, | 344 "RECIPE_MODULE[build::chromium_android]/resources/spawn_device_monitor.py"
, |
| 335 "[CWD]/src/third_party/android_tools/sdk/platform-tools/adb", | 345 "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools/adb", |
| 336 "[\"07a00ca4\"]", | 346 "[\"07a00ca4\"]", |
| 337 "tryserver.webrtc", | 347 "tryserver.webrtc", |
| 338 "android_dbg", | 348 "android_dbg", |
| 339 "--blacklist-file", | 349 "--blacklist-file", |
| 340 "[CWD]/src/out/bad_devices.json" | 350 "[SLAVE_BUILD]/src/out/bad_devices.json" |
| 341 ], | 351 ], |
| 352 "cwd": "[SLAVE_BUILD]", |
| 342 "name": "spawn_device_monitor" | 353 "name": "spawn_device_monitor" |
| 343 }, | 354 }, |
| 344 { | 355 { |
| 345 "cmd": [ | 356 "cmd": [ |
| 346 "python", | 357 "python", |
| 347 "-u", | 358 "-u", |
| 348 "[CWD]/src/out/Debug/bin/run_audio_decoder_unittests", | 359 "[SLAVE_BUILD]/src/out/Debug/bin/run_audio_decoder_unittests", |
| 349 "--blacklist-file", | 360 "--blacklist-file", |
| 350 "[CWD]/src/out/bad_devices.json", | 361 "[SLAVE_BUILD]/src/out/bad_devices.json", |
| 351 "--verbose", | 362 "--verbose", |
| 352 "-t", | 363 "-t", |
| 353 "900" | 364 "900" |
| 354 ], | 365 ], |
| 366 "cwd": "[SLAVE_BUILD]", |
| 355 "env": { | 367 "env": { |
| 356 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 368 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 357 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 369 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 358 }, | 370 }, |
| 359 "name": "audio_decoder_unittests" | 371 "name": "audio_decoder_unittests" |
| 360 }, | 372 }, |
| 361 { | 373 { |
| 362 "cmd": [ | 374 "cmd": [ |
| 363 "python", | 375 "python", |
| 364 "-u", | 376 "-u", |
| 365 "[CWD]/src/out/Debug/bin/run_common_audio_unittests", | 377 "[SLAVE_BUILD]/src/out/Debug/bin/run_common_audio_unittests", |
| 366 "--blacklist-file", | 378 "--blacklist-file", |
| 367 "[CWD]/src/out/bad_devices.json", | 379 "[SLAVE_BUILD]/src/out/bad_devices.json", |
| 368 "--verbose", | 380 "--verbose", |
| 369 "-t", | 381 "-t", |
| 370 "900" | 382 "900" |
| 371 ], | 383 ], |
| 384 "cwd": "[SLAVE_BUILD]", |
| 372 "env": { | 385 "env": { |
| 373 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 386 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 374 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 387 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 375 }, | 388 }, |
| 376 "name": "common_audio_unittests" | 389 "name": "common_audio_unittests" |
| 377 }, | 390 }, |
| 378 { | 391 { |
| 379 "cmd": [ | 392 "cmd": [ |
| 380 "python", | 393 "python", |
| 381 "-u", | 394 "-u", |
| 382 "[CWD]/src/out/Debug/bin/run_common_video_unittests", | 395 "[SLAVE_BUILD]/src/out/Debug/bin/run_common_video_unittests", |
| 383 "--blacklist-file", | 396 "--blacklist-file", |
| 384 "[CWD]/src/out/bad_devices.json", | 397 "[SLAVE_BUILD]/src/out/bad_devices.json", |
| 385 "--verbose", | 398 "--verbose", |
| 386 "-t", | 399 "-t", |
| 387 "900" | 400 "900" |
| 388 ], | 401 ], |
| 402 "cwd": "[SLAVE_BUILD]", |
| 389 "env": { | 403 "env": { |
| 390 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 404 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 391 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 405 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 392 }, | 406 }, |
| 393 "name": "common_video_unittests" | 407 "name": "common_video_unittests" |
| 394 }, | 408 }, |
| 395 { | 409 { |
| 396 "cmd": [ | 410 "cmd": [ |
| 397 "python", | 411 "python", |
| 398 "-u", | 412 "-u", |
| 399 "[CWD]/src/out/Debug/bin/run_modules_tests", | 413 "[SLAVE_BUILD]/src/out/Debug/bin/run_modules_tests", |
| 400 "--blacklist-file", | 414 "--blacklist-file", |
| 401 "[CWD]/src/out/bad_devices.json", | 415 "[SLAVE_BUILD]/src/out/bad_devices.json", |
| 402 "--verbose", | 416 "--verbose", |
| 403 "-t", | 417 "-t", |
| 404 "900" | 418 "900" |
| 405 ], | 419 ], |
| 420 "cwd": "[SLAVE_BUILD]", |
| 406 "env": { | 421 "env": { |
| 407 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 422 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 408 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 423 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 409 }, | 424 }, |
| 410 "name": "modules_tests" | 425 "name": "modules_tests" |
| 411 }, | 426 }, |
| 412 { | 427 { |
| 413 "cmd": [ | 428 "cmd": [ |
| 414 "python", | 429 "python", |
| 415 "-u", | 430 "-u", |
| 416 "[CWD]/src/out/Debug/bin/run_modules_unittests", | 431 "[SLAVE_BUILD]/src/out/Debug/bin/run_modules_unittests", |
| 417 "--blacklist-file", | 432 "--blacklist-file", |
| 418 "[CWD]/src/out/bad_devices.json", | 433 "[SLAVE_BUILD]/src/out/bad_devices.json", |
| 419 "--verbose", | 434 "--verbose", |
| 420 "-t", | 435 "-t", |
| 421 "900" | 436 "900" |
| 422 ], | 437 ], |
| 438 "cwd": "[SLAVE_BUILD]", |
| 423 "env": { | 439 "env": { |
| 424 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 440 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 425 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 441 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 426 }, | 442 }, |
| 427 "name": "modules_unittests" | 443 "name": "modules_unittests" |
| 428 }, | 444 }, |
| 429 { | 445 { |
| 430 "cmd": [ | 446 "cmd": [ |
| 431 "python", | 447 "python", |
| 432 "-u", | 448 "-u", |
| 433 "[CWD]/src/out/Debug/bin/run_peerconnection_unittests", | 449 "[SLAVE_BUILD]/src/out/Debug/bin/run_peerconnection_unittests", |
| 434 "--blacklist-file", | 450 "--blacklist-file", |
| 435 "[CWD]/src/out/bad_devices.json", | 451 "[SLAVE_BUILD]/src/out/bad_devices.json", |
| 436 "--verbose", | 452 "--verbose", |
| 437 "-t", | 453 "-t", |
| 438 "900" | 454 "900" |
| 439 ], | 455 ], |
| 456 "cwd": "[SLAVE_BUILD]", |
| 440 "env": { | 457 "env": { |
| 441 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 458 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 442 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 459 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 443 }, | 460 }, |
| 444 "name": "peerconnection_unittests" | 461 "name": "peerconnection_unittests" |
| 445 }, | 462 }, |
| 446 { | 463 { |
| 447 "cmd": [ | 464 "cmd": [ |
| 448 "python", | 465 "python", |
| 449 "-u", | 466 "-u", |
| 450 "[CWD]/src/out/Debug/bin/run_system_wrappers_unittests", | 467 "[SLAVE_BUILD]/src/out/Debug/bin/run_system_wrappers_unittests", |
| 451 "--blacklist-file", | 468 "--blacklist-file", |
| 452 "[CWD]/src/out/bad_devices.json", | 469 "[SLAVE_BUILD]/src/out/bad_devices.json", |
| 453 "--verbose", | 470 "--verbose", |
| 454 "-t", | 471 "-t", |
| 455 "900" | 472 "900" |
| 456 ], | 473 ], |
| 474 "cwd": "[SLAVE_BUILD]", |
| 457 "env": { | 475 "env": { |
| 458 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 476 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 459 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 477 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 460 }, | 478 }, |
| 461 "name": "system_wrappers_unittests" | 479 "name": "system_wrappers_unittests" |
| 462 }, | 480 }, |
| 463 { | 481 { |
| 464 "cmd": [ | 482 "cmd": [ |
| 465 "python", | 483 "python", |
| 466 "-u", | 484 "-u", |
| 467 "[CWD]/src/out/Debug/bin/run_test_support_unittests", | 485 "[SLAVE_BUILD]/src/out/Debug/bin/run_test_support_unittests", |
| 468 "--blacklist-file", | 486 "--blacklist-file", |
| 469 "[CWD]/src/out/bad_devices.json", | 487 "[SLAVE_BUILD]/src/out/bad_devices.json", |
| 470 "--verbose", | 488 "--verbose", |
| 471 "-t", | 489 "-t", |
| 472 "900" | 490 "900" |
| 473 ], | 491 ], |
| 492 "cwd": "[SLAVE_BUILD]", |
| 474 "env": { | 493 "env": { |
| 475 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 494 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 476 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 495 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 477 }, | 496 }, |
| 478 "name": "test_support_unittests" | 497 "name": "test_support_unittests" |
| 479 }, | 498 }, |
| 480 { | 499 { |
| 481 "cmd": [ | 500 "cmd": [ |
| 482 "python", | 501 "python", |
| 483 "-u", | 502 "-u", |
| 484 "[CWD]/src/out/Debug/bin/run_tools_unittests", | 503 "[SLAVE_BUILD]/src/out/Debug/bin/run_tools_unittests", |
| 485 "--blacklist-file", | 504 "--blacklist-file", |
| 486 "[CWD]/src/out/bad_devices.json", | 505 "[SLAVE_BUILD]/src/out/bad_devices.json", |
| 487 "--verbose", | 506 "--verbose", |
| 488 "-t", | 507 "-t", |
| 489 "900" | 508 "900" |
| 490 ], | 509 ], |
| 510 "cwd": "[SLAVE_BUILD]", |
| 491 "env": { | 511 "env": { |
| 492 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 512 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 493 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 513 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 494 }, | 514 }, |
| 495 "name": "tools_unittests" | 515 "name": "tools_unittests" |
| 496 }, | 516 }, |
| 497 { | 517 { |
| 498 "cmd": [ | 518 "cmd": [ |
| 499 "python", | 519 "python", |
| 500 "-u", | 520 "-u", |
| 501 "[CWD]/src/out/Debug/bin/run_video_engine_tests", | 521 "[SLAVE_BUILD]/src/out/Debug/bin/run_video_engine_tests", |
| 502 "--blacklist-file", | 522 "--blacklist-file", |
| 503 "[CWD]/src/out/bad_devices.json", | 523 "[SLAVE_BUILD]/src/out/bad_devices.json", |
| 504 "--verbose", | 524 "--verbose", |
| 505 "-t", | 525 "-t", |
| 506 "900" | 526 "900" |
| 507 ], | 527 ], |
| 528 "cwd": "[SLAVE_BUILD]", |
| 508 "env": { | 529 "env": { |
| 509 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 530 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 510 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 531 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 511 }, | 532 }, |
| 512 "name": "video_engine_tests" | 533 "name": "video_engine_tests" |
| 513 }, | 534 }, |
| 514 { | 535 { |
| 515 "cmd": [ | 536 "cmd": [ |
| 516 "python", | 537 "python", |
| 517 "-u", | 538 "-u", |
| 518 "[CWD]/src/out/Debug/bin/run_voice_engine_unittests", | 539 "[SLAVE_BUILD]/src/out/Debug/bin/run_voice_engine_unittests", |
| 519 "--blacklist-file", | 540 "--blacklist-file", |
| 520 "[CWD]/src/out/bad_devices.json", | 541 "[SLAVE_BUILD]/src/out/bad_devices.json", |
| 521 "--verbose", | 542 "--verbose", |
| 522 "-t", | 543 "-t", |
| 523 "900" | 544 "900" |
| 524 ], | 545 ], |
| 546 "cwd": "[SLAVE_BUILD]", |
| 525 "env": { | 547 "env": { |
| 526 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 548 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 527 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 549 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 528 }, | 550 }, |
| 529 "name": "voice_engine_unittests" | 551 "name": "voice_engine_unittests" |
| 530 }, | 552 }, |
| 531 { | 553 { |
| 532 "cmd": [ | 554 "cmd": [ |
| 533 "python", | 555 "python", |
| 534 "-u", | 556 "-u", |
| 535 "[CWD]/src/out/Debug/bin/run_webrtc_nonparallel_tests", | 557 "[SLAVE_BUILD]/src/out/Debug/bin/run_webrtc_nonparallel_tests", |
| 536 "--blacklist-file", | 558 "--blacklist-file", |
| 537 "[CWD]/src/out/bad_devices.json", | 559 "[SLAVE_BUILD]/src/out/bad_devices.json", |
| 538 "--verbose", | 560 "--verbose", |
| 539 "-t", | 561 "-t", |
| 540 "900" | 562 "900" |
| 541 ], | 563 ], |
| 564 "cwd": "[SLAVE_BUILD]", |
| 542 "env": { | 565 "env": { |
| 543 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 566 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 544 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 567 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 545 }, | 568 }, |
| 546 "name": "webrtc_nonparallel_tests" | 569 "name": "webrtc_nonparallel_tests" |
| 547 }, | 570 }, |
| 548 { | 571 { |
| 549 "cmd": [ | 572 "cmd": [ |
| 550 "python", | 573 "python", |
| 551 "-u", | 574 "-u", |
| 552 "[CWD]/src/out/Debug/bin/run_webrtc_perf_tests", | 575 "[SLAVE_BUILD]/src/out/Debug/bin/run_webrtc_perf_tests", |
| 553 "--blacklist-file", | 576 "--blacklist-file", |
| 554 "[CWD]/src/out/bad_devices.json", | 577 "[SLAVE_BUILD]/src/out/bad_devices.json", |
| 555 "--verbose", | 578 "--verbose", |
| 556 "-t", | 579 "-t", |
| 557 "2700" | 580 "2700" |
| 558 ], | 581 ], |
| 582 "cwd": "[SLAVE_BUILD]", |
| 559 "env": { | 583 "env": { |
| 560 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 584 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 561 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 585 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 562 }, | 586 }, |
| 563 "name": "webrtc_perf_tests" | 587 "name": "webrtc_perf_tests" |
| 564 }, | 588 }, |
| 565 { | 589 { |
| 566 "cmd": [ | 590 "cmd": [ |
| 567 "python", | 591 "python", |
| 568 "-u", | 592 "-u", |
| 569 "[CWD]/src/out/Debug/bin/run_AppRTCDemoTest", | 593 "[SLAVE_BUILD]/src/out/Debug/bin/run_AppRTCDemoTest", |
| 570 "--blacklist-file", | 594 "--blacklist-file", |
| 571 "[CWD]/src/out/bad_devices.json", | 595 "[SLAVE_BUILD]/src/out/bad_devices.json", |
| 572 "--verbose" | 596 "--verbose" |
| 573 ], | 597 ], |
| 598 "cwd": "[SLAVE_BUILD]", |
| 574 "name": "Instrumentation test AppRTCDemoTest" | 599 "name": "Instrumentation test AppRTCDemoTest" |
| 575 }, | 600 }, |
| 576 { | 601 { |
| 577 "cmd": [ | 602 "cmd": [ |
| 578 "python", | 603 "python", |
| 579 "-u", | 604 "-u", |
| 580 "[CWD]/src/out/Debug/bin/run_libjingle_peerconnection_android_unittest", | 605 "[SLAVE_BUILD]/src/out/Debug/bin/run_libjingle_peerconnection_android_unit
test", |
| 581 "--blacklist-file", | 606 "--blacklist-file", |
| 582 "[CWD]/src/out/bad_devices.json", | 607 "[SLAVE_BUILD]/src/out/bad_devices.json", |
| 583 "--verbose" | 608 "--verbose" |
| 584 ], | 609 ], |
| 610 "cwd": "[SLAVE_BUILD]", |
| 585 "name": "Instrumentation test libjingle_peerconnection_android_unittest" | 611 "name": "Instrumentation test libjingle_peerconnection_android_unittest" |
| 586 }, | 612 }, |
| 587 { | 613 { |
| 588 "cmd": [ | 614 "cmd": [ |
| 589 "python", | 615 "python", |
| 590 "-u", | 616 "-u", |
| 591 "RECIPE_PACKAGE_REPO[build]/scripts/slave/daemonizer.py", | 617 "RECIPE_PACKAGE_REPO[build]/scripts/slave/daemonizer.py", |
| 592 "--action", | 618 "--action", |
| 593 "stop", | 619 "stop", |
| 594 "--pid-file-path", | 620 "--pid-file-path", |
| 595 "/tmp/device_monitor.pid" | 621 "/tmp/device_monitor.pid" |
| 596 ], | 622 ], |
| 623 "cwd": "[SLAVE_BUILD]", |
| 597 "name": "shutdown_device_monitor" | 624 "name": "shutdown_device_monitor" |
| 598 }, | 625 }, |
| 599 { | 626 { |
| 600 "cmd": [ | 627 "cmd": [ |
| 601 "python", | 628 "python", |
| 602 "-u", | 629 "-u", |
| 603 "[CWD]/src/build/android/adb_logcat_printer.py", | 630 "[SLAVE_BUILD]/src/build/android/adb_logcat_printer.py", |
| 604 "--output-path", | 631 "--output-path", |
| 605 "[CWD]/src/out/Debug/full_log", | 632 "[SLAVE_BUILD]/src/out/Debug/full_log", |
| 606 "[CWD]/src/out/logcat" | 633 "[SLAVE_BUILD]/src/out/logcat" |
| 607 ], | 634 ], |
| 635 "cwd": "[SLAVE_BUILD]", |
| 608 "name": "logcat_dump" | 636 "name": "logcat_dump" |
| 609 }, | 637 }, |
| 610 { | 638 { |
| 611 "cmd": [ | 639 "cmd": [ |
| 612 "python", | 640 "python", |
| 613 "-u", | 641 "-u", |
| 614 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | 642 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
| 615 "--", | 643 "--", |
| 616 "[ROOT]/b/depot_tools/gsutil.py", | 644 "[DEPOT_TOOLS]/gsutil.py", |
| 617 "--force-version", | 645 "--force-version", |
| 618 "4.7", | 646 "4.7", |
| 619 "-o", | 647 "-o", |
| 620 "GSUtil:parallel_composite_upload_threshold=50M", | 648 "GSUtil:parallel_composite_upload_threshold=50M", |
| 621 "----", | 649 "----", |
| 622 "cp", | 650 "cp", |
| 623 "-a", | 651 "-a", |
| 624 "public-read", | 652 "public-read", |
| 625 "[CWD]/src/out/Debug/full_log", | 653 "[SLAVE_BUILD]/src/out/Debug/full_log", |
| 626 "gs://chromium-android/logcat_dumps/android_dbg/1337" | 654 "gs://chromium-android/logcat_dumps/android_dbg/1337" |
| 627 ], | 655 ], |
| 656 "cwd": "[SLAVE_BUILD]", |
| 628 "name": "gsutil upload", | 657 "name": "gsutil upload", |
| 629 "~followup_annotations": [ | 658 "~followup_annotations": [ |
| 630 "@@@STEP_LINK@logcat dump@https://storage.cloud.google.com/chromium-androi
d/logcat_dumps/android_dbg/1337@@@" | 659 "@@@STEP_LINK@logcat dump@https://storage.cloud.google.com/chromium-androi
d/logcat_dumps/android_dbg/1337@@@" |
| 631 ] | 660 ] |
| 632 }, | 661 }, |
| 633 { | 662 { |
| 634 "cmd": [ | 663 "cmd": [ |
| 635 "[CWD]/src/third_party/android_platform/development/scripts/stack", | 664 "[SLAVE_BUILD]/src/third_party/android_platform/development/scripts/stack"
, |
| 636 "--arch", | 665 "--arch", |
| 637 "arm", | 666 "arm", |
| 638 "--more-info", | 667 "--more-info", |
| 639 "[CWD]/src/out/Debug/full_log" | 668 "[SLAVE_BUILD]/src/out/Debug/full_log" |
| 640 ], | 669 ], |
| 670 "cwd": "[SLAVE_BUILD]", |
| 641 "env": { | 671 "env": { |
| 642 "CHROMIUM_OUTPUT_DIR": "[CWD]/src/out/Debug", | 672 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Debug", |
| 643 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 673 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 644 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 674 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 645 }, | 675 }, |
| 646 "name": "stack_tool_with_logcat_dump" | 676 "name": "stack_tool_with_logcat_dump" |
| 647 }, | 677 }, |
| 648 { | 678 { |
| 649 "cmd": [ | 679 "cmd": [ |
| 650 "[CWD]/src/build/android/tombstones.py", | 680 "[SLAVE_BUILD]/src/build/android/tombstones.py", |
| 651 "-a", | 681 "-a", |
| 652 "-s", | 682 "-s", |
| 653 "-w" | 683 "-w" |
| 654 ], | 684 ], |
| 685 "cwd": "[SLAVE_BUILD]", |
| 655 "env": { | 686 "env": { |
| 656 "CHROMIUM_OUTPUT_DIR": "[CWD]/src/out/Debug", | 687 "CHROMIUM_OUTPUT_DIR": "[SLAVE_BUILD]/src/out/Debug", |
| 657 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 688 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 658 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 689 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 659 }, | 690 }, |
| 660 "name": "stack_tool_for_tombstones" | 691 "name": "stack_tool_for_tombstones" |
| 661 }, | 692 }, |
| 662 { | 693 { |
| 663 "cmd": [ | 694 "cmd": [ |
| 664 "python", | 695 "python", |
| 665 "-u", | 696 "-u", |
| 666 "\nimport glob, os, sys\nfor report in glob.glob(sys.argv[1]):\n with ope
n(report, 'r') as f:\n for l in f.readlines():\n print l\n os.remove(re
port)\n", | 697 "\nimport glob, os, sys\nfor report in glob.glob(sys.argv[1]):\n with ope
n(report, 'r') as f:\n for l in f.readlines():\n print l\n os.remove(re
port)\n", |
| 667 "[CWD]/src/out/Debug/test_logs/*.log" | 698 "[SLAVE_BUILD]/src/out/Debug/test_logs/*.log" |
| 668 ], | 699 ], |
| 700 "cwd": "[SLAVE_BUILD]", |
| 669 "name": "test_report", | 701 "name": "test_report", |
| 670 "~followup_annotations": [ | 702 "~followup_annotations": [ |
| 671 "@@@STEP_LOG_LINE@python.inline@@@@", | 703 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 672 "@@@STEP_LOG_LINE@python.inline@import glob, os, sys@@@", | 704 "@@@STEP_LOG_LINE@python.inline@import glob, os, sys@@@", |
| 673 "@@@STEP_LOG_LINE@python.inline@for report in glob.glob(sys.argv[1]):@@@", | 705 "@@@STEP_LOG_LINE@python.inline@for report in glob.glob(sys.argv[1]):@@@", |
| 674 "@@@STEP_LOG_LINE@python.inline@ with open(report, 'r') as f:@@@", | 706 "@@@STEP_LOG_LINE@python.inline@ with open(report, 'r') as f:@@@", |
| 675 "@@@STEP_LOG_LINE@python.inline@ for l in f.readlines():@@@", | 707 "@@@STEP_LOG_LINE@python.inline@ for l in f.readlines():@@@", |
| 676 "@@@STEP_LOG_LINE@python.inline@ print l@@@", | 708 "@@@STEP_LOG_LINE@python.inline@ print l@@@", |
| 677 "@@@STEP_LOG_LINE@python.inline@ os.remove(report)@@@", | 709 "@@@STEP_LOG_LINE@python.inline@ os.remove(report)@@@", |
| 678 "@@@STEP_LOG_END@python.inline@@@" | 710 "@@@STEP_LOG_END@python.inline@@@" |
| 679 ] | 711 ] |
| 680 }, | 712 }, |
| 681 { | 713 { |
| 682 "name": "$result", | 714 "name": "$result", |
| 683 "recipe_result": null, | 715 "recipe_result": null, |
| 684 "status_code": 0 | 716 "status_code": 0 |
| 685 } | 717 } |
| 686 ] | 718 ] |
| OLD | NEW |