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