| 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_compile_mips_dbg", | 10 "android_compile_mips_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 clang=1 component=static_library dcheck_always_
on=1 fastbuild=1 gomadir='[ROOT]/b/build/goma' target_arch=mipsel use_goma=1", | 114 "GYP_DEFINES": "OS=android clang=1 component=static_library dcheck_always_
on=1 fastbuild=1 gomadir='[BUILD]/goma' target_arch=mipsel 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 "allow_subannotations": true, | 120 "allow_subannotations": true, |
| 117 "cmd": [ | 121 "cmd": [ |
| 118 "python", | 122 "python", |
| 119 "-u", | 123 "-u", |
| 120 "RECIPE_PACKAGE_REPO[build]/scripts/slave/clang_revision.py", | 124 "RECIPE_PACKAGE_REPO[build]/scripts/slave/clang_revision.py", |
| 121 "--src-dir", | 125 "--src-dir", |
| 122 "[CWD]/src", | 126 "[SLAVE_BUILD]/src", |
| 123 "--output-json", | 127 "--output-json", |
| 124 "/path/to/tmp/json" | 128 "/path/to/tmp/json" |
| 125 ], | 129 ], |
| 130 "cwd": "[SLAVE_BUILD]", |
| 126 "env": { | 131 "env": { |
| 127 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 132 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 128 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 133 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 129 }, | 134 }, |
| 130 "name": "clang_revision", | 135 "name": "clang_revision", |
| 131 "~followup_annotations": [ | 136 "~followup_annotations": [ |
| 132 "@@@STEP_LOG_LINE@json.output@{@@@", | 137 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 133 "@@@STEP_LOG_LINE@json.output@ \"clang_revision\": \"123456-7\"@@@", | 138 "@@@STEP_LOG_LINE@json.output@ \"clang_revision\": \"123456-7\"@@@", |
| 134 "@@@STEP_LOG_LINE@json.output@}@@@", | 139 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 135 "@@@STEP_LOG_END@json.output@@@" | 140 "@@@STEP_LOG_END@json.output@@@" |
| 136 ] | 141 ] |
| 137 }, | 142 }, |
| 138 { | 143 { |
| 139 "cmd": [ | 144 "cmd": [ |
| 140 "python", | 145 "python", |
| 141 "-u", | 146 "-u", |
| 142 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py", | 147 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py", |
| 143 "--show-path", | 148 "--show-path", |
| 144 "python", | 149 "python", |
| 145 "RECIPE_PACKAGE_REPO[build]/scripts/slave/compile.py", | 150 "RECIPE_PACKAGE_REPO[build]/scripts/slave/compile.py", |
| 146 "--gsutil-py-path", | 151 "--gsutil-py-path", |
| 147 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py", | 152 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py", |
| 148 "--ninja-path", | 153 "--ninja-path", |
| 149 "RECIPE_PACKAGE_REPO[depot_tools]/ninja", | 154 "RECIPE_PACKAGE_REPO[depot_tools]/ninja", |
| 150 "--target", | 155 "--target", |
| 151 "Debug", | 156 "Debug", |
| 152 "--src-dir", | 157 "--src-dir", |
| 153 "[CWD]/src", | 158 "[SLAVE_BUILD]/src", |
| 154 "--goma-cache-dir", | 159 "--goma-cache-dir", |
| 155 "[ROOT]/b/build/slave/goma_cache", | 160 "[GOMA_CACHE]", |
| 156 "--build-tool", | 161 "--build-tool", |
| 157 "ninja", | 162 "ninja", |
| 158 "--compiler", | 163 "--compiler", |
| 159 "goma-clang", | 164 "goma-clang", |
| 160 "--goma-jsonstatus", | 165 "--goma-jsonstatus", |
| 161 "/path/to/tmp/json", | 166 "/path/to/tmp/json", |
| 162 "--goma-service-account-json-file", | 167 "--goma-service-account-json-file", |
| 163 "/creds/service_accounts/service-account-goma-client.json", | 168 "/creds/service_accounts/service-account-goma-client.json", |
| 164 "--goma-dir", | 169 "--goma-dir", |
| 165 "[ROOT]/b/build/goma", | 170 "[BUILD]/goma", |
| 166 "--goma-fail-fast", | 171 "--goma-fail-fast", |
| 167 "--goma-disable-local-fallback", | 172 "--goma-disable-local-fallback", |
| 168 "--" | 173 "--" |
| 169 ], | 174 ], |
| 175 "cwd": "[SLAVE_BUILD]", |
| 170 "env": { | 176 "env": { |
| 171 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 177 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 172 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" | 178 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
| 173 }, | 179 }, |
| 174 "name": "compile", | 180 "name": "compile", |
| 175 "~followup_annotations": [ | 181 "~followup_annotations": [ |
| 176 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@", | 182 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@", |
| 177 "@@@STEP_LOG_END@json.output (invalid)@@@" | 183 "@@@STEP_LOG_END@json.output (invalid)@@@" |
| 178 ] | 184 ] |
| 179 }, | 185 }, |
| 180 { | 186 { |
| 181 "name": "$result", | 187 "name": "$result", |
| 182 "recipe_result": null, | 188 "recipe_result": null, |
| 183 "status_code": 0 | 189 "status_code": 0 |
| 184 } | 190 } |
| 185 ] | 191 ] |
| OLD | NEW |