| 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 "chromium.perf", | 8 "chromium.perf", |
| 9 "--builder", | 9 "--builder", |
| 10 "Android Builder", | 10 "Android Builder", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "--issue", | 21 "--issue", |
| 22 "8675309", | 22 "8675309", |
| 23 "--patchset", | 23 "--patchset", |
| 24 "1", | 24 "1", |
| 25 "--output_json", | 25 "--output_json", |
| 26 "/path/to/tmp/json", | 26 "/path/to/tmp/json", |
| 27 "--revision", | 27 "--revision", |
| 28 "src@267739", | 28 "src@267739", |
| 29 "--output_manifest" | 29 "--output_manifest" |
| 30 ], | 30 ], |
| 31 "cwd": "[SLAVE_BUILD]", | |
| 32 "env": { | 31 "env": { |
| 33 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 32 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 34 }, | 33 }, |
| 35 "name": "bot_update", | 34 "name": "bot_update", |
| 36 "~followup_annotations": [ | 35 "~followup_annotations": [ |
| 37 "@@@STEP_TEXT@Some step text@@@", | 36 "@@@STEP_TEXT@Some step text@@@", |
| 38 "@@@STEP_LOG_LINE@json.output@{@@@", | 37 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 39 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", | 38 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", |
| 40 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", | 39 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", |
| 41 "@@@STEP_LOG_LINE@json.output@ \"src\": \"267739\"@@@", | 40 "@@@STEP_LOG_LINE@json.output@ \"src\": \"267739\"@@@", |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 { | 102 { |
| 104 "cmd": [ | 103 "cmd": [ |
| 105 "python", | 104 "python", |
| 106 "-u", | 105 "-u", |
| 107 "\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", | 106 "\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", |
| 108 "[SLAVE_BUILD]/src/out/Release/debug_info_dumps", | 107 "[SLAVE_BUILD]/src/out/Release/debug_info_dumps", |
| 109 "[SLAVE_BUILD]/src/out/Release/test_logs", | 108 "[SLAVE_BUILD]/src/out/Release/test_logs", |
| 110 "[SLAVE_BUILD]/src/out/build_product.zip", | 109 "[SLAVE_BUILD]/src/out/build_product.zip", |
| 111 "[SLAVE_BUILD]/src" | 110 "[SLAVE_BUILD]/src" |
| 112 ], | 111 ], |
| 113 "cwd": "[SLAVE_BUILD]", | |
| 114 "name": "clean local files", | 112 "name": "clean local files", |
| 115 "~followup_annotations": [ | 113 "~followup_annotations": [ |
| 116 "@@@STEP_LOG_LINE@python.inline@@@@", | 114 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 117 "@@@STEP_LOG_LINE@python.inline@import shutil, sys, os@@@", | 115 "@@@STEP_LOG_LINE@python.inline@import shutil, sys, os@@@", |
| 118 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[1], True)@@@", | 116 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[1], True)@@@", |
| 119 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[2], True)@@@", | 117 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[2], True)@@@", |
| 120 "@@@STEP_LOG_LINE@python.inline@try:@@@", | 118 "@@@STEP_LOG_LINE@python.inline@try:@@@", |
| 121 "@@@STEP_LOG_LINE@python.inline@ os.remove(sys.argv[3])@@@", | 119 "@@@STEP_LOG_LINE@python.inline@ os.remove(sys.argv[3])@@@", |
| 122 "@@@STEP_LOG_LINE@python.inline@except OSError:@@@", | 120 "@@@STEP_LOG_LINE@python.inline@except OSError:@@@", |
| 123 "@@@STEP_LOG_LINE@python.inline@ pass@@@", | 121 "@@@STEP_LOG_LINE@python.inline@ pass@@@", |
| 124 "@@@STEP_LOG_LINE@python.inline@for base, _dirs, files in os.walk(sys.argv
[4]):@@@", | 122 "@@@STEP_LOG_LINE@python.inline@for base, _dirs, files in os.walk(sys.argv
[4]):@@@", |
| 125 "@@@STEP_LOG_LINE@python.inline@ for f in files:@@@", | 123 "@@@STEP_LOG_LINE@python.inline@ for f in files:@@@", |
| 126 "@@@STEP_LOG_LINE@python.inline@ if f.endswith('.pyc'):@@@", | 124 "@@@STEP_LOG_LINE@python.inline@ if f.endswith('.pyc'):@@@", |
| 127 "@@@STEP_LOG_LINE@python.inline@ os.remove(os.path.join(base, f))@@@"
, | 125 "@@@STEP_LOG_LINE@python.inline@ os.remove(os.path.join(base, f))@@@"
, |
| 128 "@@@STEP_LOG_END@python.inline@@@" | 126 "@@@STEP_LOG_END@python.inline@@@" |
| 129 ] | 127 ] |
| 130 }, | 128 }, |
| 131 { | 129 { |
| 132 "cmd": [ | 130 "cmd": [ |
| 133 "python", | 131 "python", |
| 134 "-u", | 132 "-u", |
| 135 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 133 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 136 "runhooks" | 134 "runhooks" |
| 137 ], | 135 ], |
| 138 "cwd": "[SLAVE_BUILD]", | |
| 139 "env": { | 136 "env": { |
| 140 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 137 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 141 "GYP_CHROMIUM_NO_ACTION": "1", | 138 "GYP_CHROMIUM_NO_ACTION": "1", |
| 142 "GYP_CROSSCOMPILE": "1", | 139 "GYP_CROSSCOMPILE": "1", |
| 143 "GYP_DEFINES": "OS=android component=static_library fastbuild=1 gomadir='[
BUILD]/goma' target_arch=arm use_goma=1", | 140 "GYP_DEFINES": "OS=android component=static_library fastbuild=1 gomadir='[
BUILD]/goma' target_arch=arm use_goma=1", |
| 144 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 141 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 145 }, | 142 }, |
| 146 "name": "gclient runhooks" | 143 "name": "gclient runhooks" |
| 147 }, | 144 }, |
| 148 { | 145 { |
| 149 "cmd": [ | 146 "cmd": [ |
| 150 "python", | 147 "python", |
| 151 "-u", | 148 "-u", |
| 152 "[SLAVE_BUILD]/src/tools/mb/mb.py", | 149 "[SLAVE_BUILD]/src/tools/mb/mb.py", |
| 153 "gen", | 150 "gen", |
| 154 "-m", | 151 "-m", |
| 155 "chromium.perf", | 152 "chromium.perf", |
| 156 "-b", | 153 "-b", |
| 157 "Android Builder", | 154 "Android Builder", |
| 158 "--config-file", | 155 "--config-file", |
| 159 "[SLAVE_BUILD]/src/tools/mb/mb_config.pyl", | 156 "[SLAVE_BUILD]/src/tools/mb/mb_config.pyl", |
| 160 "--goma-dir", | 157 "--goma-dir", |
| 161 "[BUILD]/goma", | 158 "[BUILD]/goma", |
| 162 "//out/Release" | 159 "//out/Release" |
| 163 ], | 160 ], |
| 164 "cwd": "[SLAVE_BUILD]", | |
| 165 "env": { | 161 "env": { |
| 166 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json" | 162 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json" |
| 167 }, | 163 }, |
| 168 "name": "generate_build_files" | 164 "name": "generate_build_files" |
| 169 }, | 165 }, |
| 170 { | 166 { |
| 171 "cmd": [ | 167 "cmd": [ |
| 172 "python", | 168 "python", |
| 173 "-u", | 169 "-u", |
| 174 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py", | 170 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 197 "[BUILD]/goma", | 193 "[BUILD]/goma", |
| 198 "--", | 194 "--", |
| 199 "android_tools", | 195 "android_tools", |
| 200 "cc_perftests", | 196 "cc_perftests", |
| 201 "chrome_public_apk", | 197 "chrome_public_apk", |
| 202 "gpu_perftests", | 198 "gpu_perftests", |
| 203 "push_apps_to_background_apk", | 199 "push_apps_to_background_apk", |
| 204 "system_webview_apk", | 200 "system_webview_apk", |
| 205 "system_webview_shell_apk" | 201 "system_webview_shell_apk" |
| 206 ], | 202 ], |
| 207 "cwd": "[SLAVE_BUILD]", | |
| 208 "env": { | 203 "env": { |
| 209 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 204 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 210 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" | 205 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 211 }, | 206 }, |
| 212 "name": "compile", | 207 "name": "compile", |
| 213 "~followup_annotations": [ | 208 "~followup_annotations": [ |
| 214 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@", | 209 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@", |
| 215 "@@@STEP_LOG_END@json.output (invalid)@@@" | 210 "@@@STEP_LOG_END@json.output (invalid)@@@" |
| 216 ] | 211 ] |
| 217 }, | 212 }, |
| (...skipping 17 matching lines...) Expand all Loading... |
| 235 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | 230 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", |
| 236 "--", | 231 "--", |
| 237 "[DEPOT_TOOLS]/gsutil.py", | 232 "[DEPOT_TOOLS]/gsutil.py", |
| 238 "--force-version", | 233 "--force-version", |
| 239 "4.7", | 234 "4.7", |
| 240 "----", | 235 "----", |
| 241 "cp", | 236 "cp", |
| 242 "[SLAVE_BUILD]/src/out/build_product.zip", | 237 "[SLAVE_BUILD]/src/out/build_product.zip", |
| 243 "gs://chrome-perf/android_perf_rel/full-build-linux_267739.zip" | 238 "gs://chrome-perf/android_perf_rel/full-build-linux_267739.zip" |
| 244 ], | 239 ], |
| 245 "cwd": "[SLAVE_BUILD]", | |
| 246 "name": "gsutil upload_build_product", | 240 "name": "gsutil upload_build_product", |
| 247 "~followup_annotations": [ | 241 "~followup_annotations": [ |
| 248 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/chrome-perf/a
ndroid_perf_rel/full-build-linux_267739.zip@@@" | 242 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/chrome-perf/a
ndroid_perf_rel/full-build-linux_267739.zip@@@" |
| 249 ] | 243 ] |
| 250 }, | 244 }, |
| 251 { | 245 { |
| 252 "cmd": [], | 246 "cmd": [], |
| 253 "cwd": "[SLAVE_BUILD]", | |
| 254 "name": "trigger", | 247 "name": "trigger", |
| 255 "trigger_specs": [ | 248 "trigger_specs": [ |
| 256 { | 249 { |
| 257 "bucket": "master.chromium.perf.fyi", | 250 "bucket": "master.chromium.perf.fyi", |
| 258 "builder_name": "Android Nexus5 WebView Perf (1)", | 251 "builder_name": "Android Nexus5 WebView Perf (1)", |
| 259 "properties": { | 252 "properties": { |
| 260 "parent_revision": "267739", | 253 "parent_revision": "267739", |
| 261 "revision": "267739" | 254 "revision": "267739" |
| 262 } | 255 } |
| 263 } | 256 } |
| 264 ], | 257 ], |
| 265 "~followup_annotations": [ | 258 "~followup_annotations": [ |
| 266 "@@@STEP_TEXT@Android Nexus5 WebView Perf (1)@@@" | 259 "@@@STEP_TEXT@Android Nexus5 WebView Perf (1)@@@" |
| 267 ] | 260 ] |
| 268 }, | 261 }, |
| 269 { | 262 { |
| 270 "name": "$result", | 263 "name": "$result", |
| 271 "recipe_result": null, | 264 "recipe_result": null, |
| 272 "status_code": 0 | 265 "status_code": 0 |
| 273 } | 266 } |
| 274 ] | 267 ] |
| OLD | NEW |