| 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 "client.webrtc", | 8 "client.webrtc", |
| 9 "--builder", | 9 "--builder", |
| 10 "Android32 Clang (dbg)", | 10 "Android32 Clang (dbg)", |
| 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 "--output_json", | 21 "--output_json", |
| 22 "/path/to/tmp/json", | 22 "/path/to/tmp/json", |
| 23 "--revision", | 23 "--revision", |
| 24 "src@12345", | 24 "src@12345", |
| 25 "--output_manifest" | 25 "--output_manifest" |
| 26 ], | 26 ], |
| 27 "cwd": "[SLAVE_BUILD]", | |
| 28 "env": { | 27 "env": { |
| 29 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 28 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 30 }, | 29 }, |
| 31 "name": "bot_update", | 30 "name": "bot_update", |
| 32 "~followup_annotations": [ | 31 "~followup_annotations": [ |
| 33 "@@@STEP_TEXT@Some step text@@@", | 32 "@@@STEP_TEXT@Some step text@@@", |
| 34 "@@@STEP_LOG_LINE@json.output@{@@@", | 33 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 35 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", | 34 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", |
| 36 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", | 35 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", |
| 37 "@@@STEP_LOG_LINE@json.output@ \"src\": \"12345\"@@@", | 36 "@@@STEP_LOG_LINE@json.output@ \"src\": \"12345\"@@@", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 54 "@@@STEP_LOG_END@json.output@@@", | 53 "@@@STEP_LOG_END@json.output@@@", |
| 55 "@@@SET_BUILD_PROPERTY@got_revision@\"f27fede2220bcd326aee3e86ddfd4ebd0fe5
8cb9\"@@@", | 54 "@@@SET_BUILD_PROPERTY@got_revision@\"f27fede2220bcd326aee3e86ddfd4ebd0fe5
8cb9\"@@@", |
| 56 "@@@SET_BUILD_PROPERTY@got_revision_cp@\"refs/heads/master@{#170242}\"@@@" | 55 "@@@SET_BUILD_PROPERTY@got_revision_cp@\"refs/heads/master@{#170242}\"@@@" |
| 57 ] | 56 ] |
| 58 }, | 57 }, |
| 59 { | 58 { |
| 60 "cmd": [ | 59 "cmd": [ |
| 61 "python", | 60 "python", |
| 62 "-u", | 61 "-u", |
| 63 "RECIPE_MODULE[build::webrtc]/resources/cleanup_files.py", | 62 "RECIPE_MODULE[build::webrtc]/resources/cleanup_files.py", |
| 64 "[SLAVE_BUILD]/src/out" | 63 "[CWD]/src/out" |
| 65 ], | 64 ], |
| 66 "cwd": "[SLAVE_BUILD]", | |
| 67 "name": "clean test output files" | 65 "name": "clean test output files" |
| 68 }, | 66 }, |
| 69 { | 67 { |
| 70 "cmd": [ | 68 "cmd": [ |
| 71 "python", | 69 "python", |
| 72 "-u", | 70 "-u", |
| 73 "\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", | 71 "\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", |
| 74 "[SLAVE_BUILD]/src/out/Debug/debug_info_dumps", | 72 "[CWD]/src/out/Debug/debug_info_dumps", |
| 75 "[SLAVE_BUILD]/src/out/Debug/test_logs", | 73 "[CWD]/src/out/Debug/test_logs", |
| 76 "[SLAVE_BUILD]/src/out/build_product.zip", | 74 "[CWD]/src/out/build_product.zip", |
| 77 "[SLAVE_BUILD]/src" | 75 "[CWD]/src" |
| 78 ], | 76 ], |
| 79 "cwd": "[SLAVE_BUILD]", | |
| 80 "name": "clean local files", | 77 "name": "clean local files", |
| 81 "~followup_annotations": [ | 78 "~followup_annotations": [ |
| 82 "@@@STEP_LOG_LINE@python.inline@@@@", | 79 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 83 "@@@STEP_LOG_LINE@python.inline@import shutil, sys, os@@@", | 80 "@@@STEP_LOG_LINE@python.inline@import shutil, sys, os@@@", |
| 84 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[1], True)@@@", | 81 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[1], True)@@@", |
| 85 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[2], True)@@@", | 82 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[2], True)@@@", |
| 86 "@@@STEP_LOG_LINE@python.inline@try:@@@", | 83 "@@@STEP_LOG_LINE@python.inline@try:@@@", |
| 87 "@@@STEP_LOG_LINE@python.inline@ os.remove(sys.argv[3])@@@", | 84 "@@@STEP_LOG_LINE@python.inline@ os.remove(sys.argv[3])@@@", |
| 88 "@@@STEP_LOG_LINE@python.inline@except OSError:@@@", | 85 "@@@STEP_LOG_LINE@python.inline@except OSError:@@@", |
| 89 "@@@STEP_LOG_LINE@python.inline@ pass@@@", | 86 "@@@STEP_LOG_LINE@python.inline@ pass@@@", |
| 90 "@@@STEP_LOG_LINE@python.inline@for base, _dirs, files in os.walk(sys.argv
[4]):@@@", | 87 "@@@STEP_LOG_LINE@python.inline@for base, _dirs, files in os.walk(sys.argv
[4]):@@@", |
| 91 "@@@STEP_LOG_LINE@python.inline@ for f in files:@@@", | 88 "@@@STEP_LOG_LINE@python.inline@ for f in files:@@@", |
| 92 "@@@STEP_LOG_LINE@python.inline@ if f.endswith('.pyc'):@@@", | 89 "@@@STEP_LOG_LINE@python.inline@ if f.endswith('.pyc'):@@@", |
| 93 "@@@STEP_LOG_LINE@python.inline@ os.remove(os.path.join(base, f))@@@"
, | 90 "@@@STEP_LOG_LINE@python.inline@ os.remove(os.path.join(base, f))@@@"
, |
| 94 "@@@STEP_LOG_END@python.inline@@@" | 91 "@@@STEP_LOG_END@python.inline@@@" |
| 95 ] | 92 ] |
| 96 }, | 93 }, |
| 97 { | 94 { |
| 98 "cmd": [ | 95 "cmd": [ |
| 99 "python", | 96 "python", |
| 100 "-u", | 97 "-u", |
| 101 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 98 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 102 "runhooks" | 99 "runhooks" |
| 103 ], | 100 ], |
| 104 "cwd": "[SLAVE_BUILD]", | |
| 105 "env": { | 101 "env": { |
| 106 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 102 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 107 "GYP_CROSSCOMPILE": "1", | 103 "GYP_CROSSCOMPILE": "1", |
| 108 "GYP_DEFINES": "OS=android clang=1 component=static_library fastbuild=1 go
madir='[BUILD]/goma' target_arch=arm use_goma=1", | 104 "GYP_DEFINES": "OS=android clang=1 component=static_library fastbuild=1 go
madir='[ROOT]/b/build/goma' target_arch=arm use_goma=1", |
| 109 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 105 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 110 }, | 106 }, |
| 111 "name": "gclient runhooks" | 107 "name": "gclient runhooks" |
| 112 }, | 108 }, |
| 113 { | 109 { |
| 114 "allow_subannotations": true, | 110 "allow_subannotations": true, |
| 115 "cmd": [ | 111 "cmd": [ |
| 116 "python", | 112 "python", |
| 117 "-u", | 113 "-u", |
| 118 "RECIPE_PACKAGE_REPO[build]/scripts/slave/clang_revision.py", | 114 "RECIPE_PACKAGE_REPO[build]/scripts/slave/clang_revision.py", |
| 119 "--src-dir", | 115 "--src-dir", |
| 120 "[SLAVE_BUILD]/src", | 116 "[CWD]/src", |
| 121 "--output-json", | 117 "--output-json", |
| 122 "/path/to/tmp/json" | 118 "/path/to/tmp/json" |
| 123 ], | 119 ], |
| 124 "cwd": "[SLAVE_BUILD]", | |
| 125 "env": { | 120 "env": { |
| 126 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 121 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 127 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" | 122 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" |
| 128 }, | 123 }, |
| 129 "name": "clang_revision", | 124 "name": "clang_revision", |
| 130 "~followup_annotations": [ | 125 "~followup_annotations": [ |
| 131 "@@@STEP_LOG_LINE@json.output@{@@@", | 126 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 132 "@@@STEP_LOG_LINE@json.output@ \"clang_revision\": \"123456-7\"@@@", | 127 "@@@STEP_LOG_LINE@json.output@ \"clang_revision\": \"123456-7\"@@@", |
| 133 "@@@STEP_LOG_LINE@json.output@}@@@", | 128 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 134 "@@@STEP_LOG_END@json.output@@@" | 129 "@@@STEP_LOG_END@json.output@@@" |
| 135 ] | 130 ] |
| 136 }, | 131 }, |
| 137 { | 132 { |
| 138 "cmd": [ | 133 "cmd": [ |
| 139 "python", | 134 "python", |
| 140 "-u", | 135 "-u", |
| 141 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py", | 136 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py", |
| 142 "--show-path", | 137 "--show-path", |
| 143 "python", | 138 "python", |
| 144 "RECIPE_PACKAGE_REPO[build]/scripts/slave/compile.py", | 139 "RECIPE_PACKAGE_REPO[build]/scripts/slave/compile.py", |
| 145 "--gsutil-py-path", | 140 "--gsutil-py-path", |
| 146 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py", | 141 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py", |
| 147 "--ninja-path", | 142 "--ninja-path", |
| 148 "RECIPE_PACKAGE_REPO[depot_tools]/ninja", | 143 "RECIPE_PACKAGE_REPO[depot_tools]/ninja", |
| 149 "--target", | 144 "--target", |
| 150 "Debug", | 145 "Debug", |
| 151 "--src-dir", | 146 "--src-dir", |
| 152 "[SLAVE_BUILD]/src", | 147 "[CWD]/src", |
| 153 "--goma-cache-dir", | 148 "--goma-cache-dir", |
| 154 "[GOMA_CACHE]", | 149 "[ROOT]/b/build/slave/goma_cache", |
| 155 "--build-tool", | 150 "--build-tool", |
| 156 "ninja", | 151 "ninja", |
| 157 "--compiler", | 152 "--compiler", |
| 158 "goma-clang", | 153 "goma-clang", |
| 159 "--goma-jsonstatus", | 154 "--goma-jsonstatus", |
| 160 "/path/to/tmp/json", | 155 "/path/to/tmp/json", |
| 161 "--goma-service-account-json-file", | 156 "--goma-service-account-json-file", |
| 162 "/creds/service_accounts/service-account-goma-client.json", | 157 "/creds/service_accounts/service-account-goma-client.json", |
| 163 "--goma-dir", | 158 "--goma-dir", |
| 164 "[BUILD]/goma", | 159 "[ROOT]/b/build/goma", |
| 165 "--" | 160 "--" |
| 166 ], | 161 ], |
| 167 "cwd": "[SLAVE_BUILD]", | |
| 168 "env": { | 162 "env": { |
| 169 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 163 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 170 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" | 164 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/
build/android:%(PATH)s" |
| 171 }, | 165 }, |
| 172 "name": "compile", | 166 "name": "compile", |
| 173 "~followup_annotations": [ | 167 "~followup_annotations": [ |
| 174 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@", | 168 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@", |
| 175 "@@@STEP_LOG_END@json.output (invalid)@@@" | 169 "@@@STEP_LOG_END@json.output (invalid)@@@" |
| 176 ] | 170 ] |
| 177 }, | 171 }, |
| 178 { | 172 { |
| 179 "name": "$result", | 173 "name": "$result", |
| 180 "recipe_result": null, | 174 "recipe_result": null, |
| 181 "status_code": 0 | 175 "status_code": 0 |
| 182 } | 176 } |
| 183 ] | 177 ] |
| OLD | NEW |