Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Side by Side Diff: scripts/slave/recipes/cronet.expected/android_cronet_mips_builder.json

Issue 1930433002: Roll recipe dependencies (nontrivial). (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: Rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "\nimport os, sys\n\nbuild_path = sys.argv[1]\nif os.path.exists(build_pat h):\n for (path, dir, files) in os.walk(build_path):\n for cur_file in files :\n if cur_file.endswith('index.lock'):\n path_to_file = os.path.joi n(path, cur_file)\n print 'deleting %s' % path_to_file\n os.remove (path_to_file)\n", 6 "\nimport os, sys\n\nbuild_path = sys.argv[1]\nif os.path.exists(build_pat h):\n for (path, dir, files) in os.walk(build_path):\n for cur_file in files :\n if cur_file.endswith('index.lock'):\n path_to_file = os.path.joi n(path, cur_file)\n print 'deleting %s' % path_to_file\n os.remove (path_to_file)\n",
7 "[SLAVE_BUILD]" 7 "[SLAVE_BUILD]"
8 ], 8 ],
9 "cwd": "[SLAVE_BUILD]",
10 "name": "cleanup index.lock", 9 "name": "cleanup index.lock",
11 "~followup_annotations": [ 10 "~followup_annotations": [
12 "@@@STEP_LOG_LINE@python.inline@@@@", 11 "@@@STEP_LOG_LINE@python.inline@@@@",
13 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", 12 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@",
14 "@@@STEP_LOG_LINE@python.inline@@@@", 13 "@@@STEP_LOG_LINE@python.inline@@@@",
15 "@@@STEP_LOG_LINE@python.inline@build_path = sys.argv[1]@@@", 14 "@@@STEP_LOG_LINE@python.inline@build_path = sys.argv[1]@@@",
16 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(build_path):@@@", 15 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(build_path):@@@",
17 "@@@STEP_LOG_LINE@python.inline@ for (path, dir, files) in os.walk(build_ path):@@@", 16 "@@@STEP_LOG_LINE@python.inline@ for (path, dir, files) in os.walk(build_ path):@@@",
18 "@@@STEP_LOG_LINE@python.inline@ for cur_file in files:@@@", 17 "@@@STEP_LOG_LINE@python.inline@ for cur_file in files:@@@",
19 "@@@STEP_LOG_LINE@python.inline@ if cur_file.endswith('index.lock'):@ @@", 18 "@@@STEP_LOG_LINE@python.inline@ if cur_file.endswith('index.lock'):@ @@",
(...skipping 22 matching lines...) Expand all
42 "{\"src\": \"got_src_revision\", \"src/native_client\": \"got_nacl_revisio n\", \"src/third_party/angle\": \"got_angle_revision\", \"src/third_party/webrtc \": \"got_webrtc_revision\", \"src/tools/swarming_client\": \"got_swarming_clien t_revision\", \"src/v8\": \"got_v8_revision\"}", 41 "{\"src\": \"got_src_revision\", \"src/native_client\": \"got_nacl_revisio n\", \"src/third_party/angle\": \"got_angle_revision\", \"src/third_party/webrtc \": \"got_webrtc_revision\", \"src/tools/swarming_client\": \"got_swarming_clien t_revision\", \"src/v8\": \"got_v8_revision\"}",
43 "--git-cache-dir", 42 "--git-cache-dir",
44 "[GIT_CACHE]", 43 "[GIT_CACHE]",
45 "--output_json", 44 "--output_json",
46 "/path/to/tmp/json", 45 "/path/to/tmp/json",
47 "--revision", 46 "--revision",
48 "src@4f4b02f6b7fa20a3a25682c457bbc8ad589c8a00", 47 "src@4f4b02f6b7fa20a3a25682c457bbc8ad589c8a00",
49 "--force", 48 "--force",
50 "--output_manifest" 49 "--output_manifest"
51 ], 50 ],
52 "cwd": "[SLAVE_BUILD]",
53 "env": { 51 "env": {
54 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" 52 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]"
55 }, 53 },
56 "name": "bot_update", 54 "name": "bot_update",
57 "~followup_annotations": [ 55 "~followup_annotations": [
58 "@@@STEP_TEXT@Some step text@@@", 56 "@@@STEP_TEXT@Some step text@@@",
59 "@@@STEP_LOG_LINE@json.output@{@@@", 57 "@@@STEP_LOG_LINE@json.output@{@@@",
60 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", 58 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@",
61 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", 59 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@",
62 "@@@STEP_LOG_LINE@json.output@ \"src\": \"4f4b02f6b7fa20a3a25682c457bbc 8ad589c8a00\"@@@", 60 "@@@STEP_LOG_LINE@json.output@ \"src\": \"4f4b02f6b7fa20a3a25682c457bbc 8ad589c8a00\"@@@",
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 { 122 {
125 "cmd": [ 123 "cmd": [
126 "python", 124 "python",
127 "-u", 125 "-u",
128 "\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", 126 "\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",
129 "[SLAVE_BUILD]/src/out/Release/debug_info_dumps", 127 "[SLAVE_BUILD]/src/out/Release/debug_info_dumps",
130 "[SLAVE_BUILD]/src/out/Release/test_logs", 128 "[SLAVE_BUILD]/src/out/Release/test_logs",
131 "[SLAVE_BUILD]/src/out/build_product.zip", 129 "[SLAVE_BUILD]/src/out/build_product.zip",
132 "[SLAVE_BUILD]/src" 130 "[SLAVE_BUILD]/src"
133 ], 131 ],
134 "cwd": "[SLAVE_BUILD]",
135 "name": "clean local files", 132 "name": "clean local files",
136 "~followup_annotations": [ 133 "~followup_annotations": [
137 "@@@STEP_LOG_LINE@python.inline@@@@", 134 "@@@STEP_LOG_LINE@python.inline@@@@",
138 "@@@STEP_LOG_LINE@python.inline@import shutil, sys, os@@@", 135 "@@@STEP_LOG_LINE@python.inline@import shutil, sys, os@@@",
139 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[1], True)@@@", 136 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[1], True)@@@",
140 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[2], True)@@@", 137 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[2], True)@@@",
141 "@@@STEP_LOG_LINE@python.inline@try:@@@", 138 "@@@STEP_LOG_LINE@python.inline@try:@@@",
142 "@@@STEP_LOG_LINE@python.inline@ os.remove(sys.argv[3])@@@", 139 "@@@STEP_LOG_LINE@python.inline@ os.remove(sys.argv[3])@@@",
143 "@@@STEP_LOG_LINE@python.inline@except OSError:@@@", 140 "@@@STEP_LOG_LINE@python.inline@except OSError:@@@",
144 "@@@STEP_LOG_LINE@python.inline@ pass@@@", 141 "@@@STEP_LOG_LINE@python.inline@ pass@@@",
145 "@@@STEP_LOG_LINE@python.inline@for base, _dirs, files in os.walk(sys.argv [4]):@@@", 142 "@@@STEP_LOG_LINE@python.inline@for base, _dirs, files in os.walk(sys.argv [4]):@@@",
146 "@@@STEP_LOG_LINE@python.inline@ for f in files:@@@", 143 "@@@STEP_LOG_LINE@python.inline@ for f in files:@@@",
147 "@@@STEP_LOG_LINE@python.inline@ if f.endswith('.pyc'):@@@", 144 "@@@STEP_LOG_LINE@python.inline@ if f.endswith('.pyc'):@@@",
148 "@@@STEP_LOG_LINE@python.inline@ os.remove(os.path.join(base, f))@@@" , 145 "@@@STEP_LOG_LINE@python.inline@ os.remove(os.path.join(base, f))@@@" ,
149 "@@@STEP_LOG_END@python.inline@@@" 146 "@@@STEP_LOG_END@python.inline@@@"
150 ] 147 ]
151 }, 148 },
152 { 149 {
153 "cmd": [ 150 "cmd": [
154 "python", 151 "python",
155 "-u", 152 "-u",
156 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", 153 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py",
157 "runhooks" 154 "runhooks"
158 ], 155 ],
159 "cwd": "[SLAVE_BUILD]",
160 "env": { 156 "env": {
161 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 157 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
162 "GYP_CHROMIUM_NO_ACTION": "1", 158 "GYP_CHROMIUM_NO_ACTION": "1",
163 "GYP_CROSSCOMPILE": "1", 159 "GYP_CROSSCOMPILE": "1",
164 "GYP_DEFINES": "OS=android component=static_library disable_brotli_filter= 1 disable_file_support=1 disable_ftp_support=1 enable_bidirectional_stream=1 ena ble_websockets=0 fastbuild=1 target_arch=mipsel use_platform_icu_alternatives=1" , 160 "GYP_DEFINES": "OS=android component=static_library disable_brotli_filter= 1 disable_file_support=1 disable_ftp_support=1 enable_bidirectional_stream=1 ena ble_websockets=0 fastbuild=1 target_arch=mipsel use_platform_icu_alternatives=1" ,
165 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" 161 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]"
166 }, 162 },
167 "name": "gclient runhooks" 163 "name": "gclient runhooks"
168 }, 164 },
169 { 165 {
170 "cmd": [], 166 "cmd": [],
171 "cwd": "[SLAVE_BUILD]",
172 "name": "ensure_goma" 167 "name": "ensure_goma"
173 }, 168 },
174 { 169 {
175 "cmd": [ 170 "cmd": [
176 "python", 171 "python",
177 "-u", 172 "-u",
178 "RECIPE_MODULE[build::cipd]/resources/bootstrap.py", 173 "RECIPE_MODULE[build::cipd]/resources/bootstrap.py",
179 "--platform", 174 "--platform",
180 "linux-amd64", 175 "linux-amd64",
181 "--dest-directory", 176 "--dest-directory",
182 "[SLAVE_BUILD]/cipd", 177 "[SLAVE_BUILD]/cipd",
183 "--json-output", 178 "--json-output",
184 "/path/to/tmp/json" 179 "/path/to/tmp/json"
185 ], 180 ],
186 "cwd": "[SLAVE_BUILD]",
187 "name": "ensure_goma.install cipd", 181 "name": "ensure_goma.install cipd",
188 "~followup_annotations": [ 182 "~followup_annotations": [
189 "@@@STEP_NEST_LEVEL@1@@@", 183 "@@@STEP_NEST_LEVEL@1@@@",
190 "@@@STEP_TEXT@cipd instance_id: 40-chars-fake-of-the-package-instance_id@@ @", 184 "@@@STEP_TEXT@cipd instance_id: 40-chars-fake-of-the-package-instance_id@@ @",
191 "@@@STEP_LOG_LINE@json.output@{@@@", 185 "@@@STEP_LOG_LINE@json.output@{@@@",
192 "@@@STEP_LOG_LINE@json.output@ \"executable\": \"[SLAVE_BUILD]/cipd/cipd\ ", @@@", 186 "@@@STEP_LOG_LINE@json.output@ \"executable\": \"[SLAVE_BUILD]/cipd/cipd\ ", @@@",
193 "@@@STEP_LOG_LINE@json.output@ \"instance_id\": \"40-chars-fake-of-the-pa ckage-instance_id\"@@@", 187 "@@@STEP_LOG_LINE@json.output@ \"instance_id\": \"40-chars-fake-of-the-pa ckage-instance_id\"@@@",
194 "@@@STEP_LOG_LINE@json.output@}@@@", 188 "@@@STEP_LOG_LINE@json.output@}@@@",
195 "@@@STEP_LOG_END@json.output@@@" 189 "@@@STEP_LOG_END@json.output@@@"
196 ] 190 ]
197 }, 191 },
198 { 192 {
199 "cmd": [ 193 "cmd": [
200 "[SLAVE_BUILD]/cipd/cipd", 194 "[SLAVE_BUILD]/cipd/cipd",
201 "ensure", 195 "ensure",
202 "--root", 196 "--root",
203 "[CACHE]/cipd/goma", 197 "[CACHE]/cipd/goma",
204 "--list", 198 "--list",
205 "infra_internal/goma/client/linux-amd64 release", 199 "infra_internal/goma/client/linux-amd64 release",
206 "--json-output", 200 "--json-output",
207 "/path/to/tmp/json", 201 "/path/to/tmp/json",
208 "--service-account-json", 202 "--service-account-json",
209 "/creds/service_accounts/service-account-goma-client.json" 203 "/creds/service_accounts/service-account-goma-client.json"
210 ], 204 ],
211 "cwd": "[SLAVE_BUILD]",
212 "name": "ensure_goma.ensure_installed", 205 "name": "ensure_goma.ensure_installed",
213 "~followup_annotations": [ 206 "~followup_annotations": [
214 "@@@STEP_NEST_LEVEL@1@@@", 207 "@@@STEP_NEST_LEVEL@1@@@",
215 "@@@STEP_LOG_LINE@json.output@{@@@", 208 "@@@STEP_LOG_LINE@json.output@{@@@",
216 "@@@STEP_LOG_LINE@json.output@ \"result\": [@@@", 209 "@@@STEP_LOG_LINE@json.output@ \"result\": [@@@",
217 "@@@STEP_LOG_LINE@json.output@ {@@@", 210 "@@@STEP_LOG_LINE@json.output@ {@@@",
218 "@@@STEP_LOG_LINE@json.output@ \"instance_id\": \"resolved-instance_i d-of-release---------\", @@@", 211 "@@@STEP_LOG_LINE@json.output@ \"instance_id\": \"resolved-instance_i d-of-release---------\", @@@",
219 "@@@STEP_LOG_LINE@json.output@ \"package\": \"infra_internal/goma/cli ent/linux-amd64\"@@@", 212 "@@@STEP_LOG_LINE@json.output@ \"package\": \"infra_internal/goma/cli ent/linux-amd64\"@@@",
220 "@@@STEP_LOG_LINE@json.output@ }@@@", 213 "@@@STEP_LOG_LINE@json.output@ }@@@",
221 "@@@STEP_LOG_LINE@json.output@ ]@@@", 214 "@@@STEP_LOG_LINE@json.output@ ]@@@",
(...skipping 10 matching lines...) Expand all
232 "-m", 225 "-m",
233 "chromium.testing.master", 226 "chromium.testing.master",
234 "-b", 227 "-b",
235 "Android Cronet MIPS Builder", 228 "Android Cronet MIPS Builder",
236 "--config-file", 229 "--config-file",
237 "[SLAVE_BUILD]/src/tools/mb/mb_config.pyl", 230 "[SLAVE_BUILD]/src/tools/mb/mb_config.pyl",
238 "--goma-dir", 231 "--goma-dir",
239 "[CACHE]/cipd/goma", 232 "[CACHE]/cipd/goma",
240 "//out/Release" 233 "//out/Release"
241 ], 234 ],
242 "cwd": "[SLAVE_BUILD]",
243 "env": { 235 "env": {
244 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json" 236 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json"
245 }, 237 },
246 "name": "generate_build_files" 238 "name": "generate_build_files"
247 }, 239 },
248 { 240 {
249 "cmd": [ 241 "cmd": [
250 "python", 242 "python",
251 "-u", 243 "-u",
252 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py", 244 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py",
(...skipping 17 matching lines...) Expand all
270 "--clobber", 262 "--clobber",
271 "--", 263 "--",
272 "cronet_package", 264 "cronet_package",
273 "cronet_sample_test_apk", 265 "cronet_sample_test_apk",
274 "cronet_test_instrumentation_apk", 266 "cronet_test_instrumentation_apk",
275 "cronet_unittests", 267 "cronet_unittests",
276 "cronet_unittests_apk", 268 "cronet_unittests_apk",
277 "net_unittests", 269 "net_unittests",
278 "net_unittests_apk" 270 "net_unittests_apk"
279 ], 271 ],
280 "cwd": "[SLAVE_BUILD]",
281 "env": { 272 "env": {
282 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 273 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
283 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 274 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
284 }, 275 },
285 "name": "compile" 276 "name": "compile"
286 }, 277 },
287 { 278 {
288 "allow_subannotations": true, 279 "allow_subannotations": true,
289 "cmd": [ 280 "cmd": [
290 "python", 281 "python",
(...skipping 14 matching lines...) Expand all
305 "--annotate=graphing", 296 "--annotate=graphing",
306 "--results-url=https://chromeperf.appspot.com", 297 "--results-url=https://chromeperf.appspot.com",
307 "--perf-dashboard-id=sizes", 298 "--perf-dashboard-id=sizes",
308 "--perf-id=android_cronet_mips_builder", 299 "--perf-id=android_cronet_mips_builder",
309 "RECIPE_PACKAGE_REPO[build]/scripts/slave/chromium/sizes.py", 300 "RECIPE_PACKAGE_REPO[build]/scripts/slave/chromium/sizes.py",
310 "--target", 301 "--target",
311 "Release", 302 "Release",
312 "--platform", 303 "--platform",
313 "android-cronet" 304 "android-cronet"
314 ], 305 ],
315 "cwd": "[SLAVE_BUILD]",
316 "name": "sizes" 306 "name": "sizes"
317 }, 307 },
318 { 308 {
319 "name": "$result", 309 "name": "$result",
320 "recipe_result": null, 310 "recipe_result": null,
321 "status_code": 0 311 "status_code": 0
322 } 312 }
323 ] 313 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698