| OLD | NEW |
| (Empty) |
| 1 [ | |
| 2 { | |
| 3 "cmd": [ | |
| 4 "python", | |
| 5 "-u", | |
| 6 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os.
path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not
a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", | |
| 7 "[BUILDER_CACHE]/Android32_Builder", | |
| 8 "511" | |
| 9 ], | |
| 10 "name": "makedirs checkout path", | |
| 11 "~followup_annotations": [ | |
| 12 "@@@STEP_LOG_LINE@python.inline@@@@", | |
| 13 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | |
| 14 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | |
| 15 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | |
| 16 "@@@STEP_LOG_LINE@python.inline@if not os.path.isdir(path):@@@", | |
| 17 "@@@STEP_LOG_LINE@python.inline@ if os.path.exists(path):@@@", | |
| 18 "@@@STEP_LOG_LINE@python.inline@ print \"%s exists but is not a dir\" %
path@@@", | |
| 19 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | |
| 20 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | |
| 21 "@@@STEP_LOG_END@python.inline@@@" | |
| 22 ] | |
| 23 }, | |
| 24 { | |
| 25 "cmd": [ | |
| 26 "python", | |
| 27 "-u", | |
| 28 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", | |
| 29 "--spec", | |
| 30 "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']", | |
| 31 "--patch_root", | |
| 32 "src", | |
| 33 "--revision_mapping_file", | |
| 34 "{\"src\": \"got_revision\"}", | |
| 35 "--git-cache-dir", | |
| 36 "[GIT_CACHE]", | |
| 37 "--output_json", | |
| 38 "/path/to/tmp/json", | |
| 39 "--revision", | |
| 40 "src@12345", | |
| 41 "--output_manifest" | |
| 42 ], | |
| 43 "cwd": "[BUILDER_CACHE]/Android32_Builder", | |
| 44 "env": { | |
| 45 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | |
| 46 }, | |
| 47 "name": "bot_update", | |
| 48 "~followup_annotations": [ | |
| 49 "@@@STEP_TEXT@Some step text@@@", | |
| 50 "@@@STEP_LOG_LINE@json.output@{@@@", | |
| 51 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", | |
| 52 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", | |
| 53 "@@@STEP_LOG_LINE@json.output@ \"src\": \"12345\"@@@", | |
| 54 "@@@STEP_LOG_LINE@json.output@ }, @@@", | |
| 55 "@@@STEP_LOG_LINE@json.output@ \"manifest\": {@@@", | |
| 56 "@@@STEP_LOG_LINE@json.output@ \"src\": {@@@", | |
| 57 "@@@STEP_LOG_LINE@json.output@ \"repository\": \"https://fake.org/src
.git\", @@@", | |
| 58 "@@@STEP_LOG_LINE@json.output@ \"revision\": \"f27fede2220bcd326aee3e
86ddfd4ebd0fe58cb9\"@@@", | |
| 59 "@@@STEP_LOG_LINE@json.output@ }@@@", | |
| 60 "@@@STEP_LOG_LINE@json.output@ }, @@@", | |
| 61 "@@@STEP_LOG_LINE@json.output@ \"patch_failure\": false, @@@", | |
| 62 "@@@STEP_LOG_LINE@json.output@ \"patch_root\": \"src\", @@@", | |
| 63 "@@@STEP_LOG_LINE@json.output@ \"properties\": {@@@", | |
| 64 "@@@STEP_LOG_LINE@json.output@ \"got_revision\": \"f27fede2220bcd326aee
3e86ddfd4ebd0fe58cb9\", @@@", | |
| 65 "@@@STEP_LOG_LINE@json.output@ \"got_revision_cp\": \"refs/heads/master
@{#170242}\"@@@", | |
| 66 "@@@STEP_LOG_LINE@json.output@ }, @@@", | |
| 67 "@@@STEP_LOG_LINE@json.output@ \"root\": \"src\", @@@", | |
| 68 "@@@STEP_LOG_LINE@json.output@ \"step_text\": \"Some step text\"@@@", | |
| 69 "@@@STEP_LOG_LINE@json.output@}@@@", | |
| 70 "@@@STEP_LOG_END@json.output@@@", | |
| 71 "@@@SET_BUILD_PROPERTY@got_revision@\"f27fede2220bcd326aee3e86ddfd4ebd0fe5
8cb9\"@@@", | |
| 72 "@@@SET_BUILD_PROPERTY@got_revision_cp@\"refs/heads/master@{#170242}\"@@@" | |
| 73 ] | |
| 74 }, | |
| 75 { | |
| 76 "cmd": [ | |
| 77 "python", | |
| 78 "-u", | |
| 79 "RECIPE_MODULE[build::webrtc]/resources/cleanup_files.py", | |
| 80 "[BUILDER_CACHE]/Android32_Builder/src/out" | |
| 81 ], | |
| 82 "name": "clean test output files" | |
| 83 }, | |
| 84 { | |
| 85 "cmd": [ | |
| 86 "python", | |
| 87 "-u", | |
| 88 "\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", | |
| 89 "[BUILDER_CACHE]/Android32_Builder/src/out/Release/debug_info_dumps", | |
| 90 "[BUILDER_CACHE]/Android32_Builder/src/out/Release/test_logs", | |
| 91 "[BUILDER_CACHE]/Android32_Builder/src/out/build_product.zip", | |
| 92 "[BUILDER_CACHE]/Android32_Builder/src" | |
| 93 ], | |
| 94 "name": "clean local files", | |
| 95 "~followup_annotations": [ | |
| 96 "@@@STEP_LOG_LINE@python.inline@@@@", | |
| 97 "@@@STEP_LOG_LINE@python.inline@import shutil, sys, os@@@", | |
| 98 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[1], True)@@@", | |
| 99 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[2], True)@@@", | |
| 100 "@@@STEP_LOG_LINE@python.inline@try:@@@", | |
| 101 "@@@STEP_LOG_LINE@python.inline@ os.remove(sys.argv[3])@@@", | |
| 102 "@@@STEP_LOG_LINE@python.inline@except OSError:@@@", | |
| 103 "@@@STEP_LOG_LINE@python.inline@ pass@@@", | |
| 104 "@@@STEP_LOG_LINE@python.inline@for base, _dirs, files in os.walk(sys.argv
[4]):@@@", | |
| 105 "@@@STEP_LOG_LINE@python.inline@ for f in files:@@@", | |
| 106 "@@@STEP_LOG_LINE@python.inline@ if f.endswith('.pyc'):@@@", | |
| 107 "@@@STEP_LOG_LINE@python.inline@ os.remove(os.path.join(base, f))@@@"
, | |
| 108 "@@@STEP_LOG_END@python.inline@@@" | |
| 109 ] | |
| 110 }, | |
| 111 { | |
| 112 "cmd": [ | |
| 113 "python", | |
| 114 "-u", | |
| 115 "RECIPE_MODULE[build::isolate]/resources/find_isolated_tests.py", | |
| 116 "--build-dir", | |
| 117 "[BUILDER_CACHE]/Android32_Builder/src/out/Release", | |
| 118 "--clean-isolated-files" | |
| 119 ], | |
| 120 "name": "clean isolated files" | |
| 121 }, | |
| 122 { | |
| 123 "cmd": [], | |
| 124 "name": "ensure_goma" | |
| 125 }, | |
| 126 { | |
| 127 "cmd": [ | |
| 128 "python", | |
| 129 "-u", | |
| 130 "RECIPE_MODULE[depot_tools::cipd]/resources/bootstrap.py", | |
| 131 "--platform", | |
| 132 "linux-386", | |
| 133 "--dest-directory", | |
| 134 "[SLAVE_BUILD]/cipd", | |
| 135 "--json-output", | |
| 136 "/path/to/tmp/json" | |
| 137 ], | |
| 138 "name": "ensure_goma.install cipd", | |
| 139 "~followup_annotations": [ | |
| 140 "@@@STEP_NEST_LEVEL@1@@@", | |
| 141 "@@@STEP_TEXT@cipd instance_id: 40-chars-fake-of-the-package-instance_id@@
@", | |
| 142 "@@@STEP_LOG_LINE@json.output@{@@@", | |
| 143 "@@@STEP_LOG_LINE@json.output@ \"executable\": \"[SLAVE_BUILD]/cipd/cipd\
", @@@", | |
| 144 "@@@STEP_LOG_LINE@json.output@ \"instance_id\": \"40-chars-fake-of-the-pa
ckage-instance_id\"@@@", | |
| 145 "@@@STEP_LOG_LINE@json.output@}@@@", | |
| 146 "@@@STEP_LOG_END@json.output@@@" | |
| 147 ] | |
| 148 }, | |
| 149 { | |
| 150 "cmd": [ | |
| 151 "[SLAVE_BUILD]/cipd/cipd", | |
| 152 "ensure", | |
| 153 "--root", | |
| 154 "[CACHE]/cipd/goma", | |
| 155 "--list", | |
| 156 "infra/tools/cloudtail/linux-386 goma_recipe_module\ninfra_internal/goma/c
lient/linux-386 release", | |
| 157 "--json-output", | |
| 158 "/path/to/tmp/json", | |
| 159 "--service-account-json", | |
| 160 "/creds/service_accounts/service-account-goma-client.json" | |
| 161 ], | |
| 162 "name": "ensure_goma.ensure_installed", | |
| 163 "~followup_annotations": [ | |
| 164 "@@@STEP_NEST_LEVEL@1@@@", | |
| 165 "@@@STEP_LOG_LINE@json.output@{@@@", | |
| 166 "@@@STEP_LOG_LINE@json.output@ \"result\": [@@@", | |
| 167 "@@@STEP_LOG_LINE@json.output@ {@@@", | |
| 168 "@@@STEP_LOG_LINE@json.output@ \"instance_id\": \"resolved-instance_i
d-of-goma_recipe_modu\", @@@", | |
| 169 "@@@STEP_LOG_LINE@json.output@ \"package\": \"infra/tools/cloudtail/l
inux-386\"@@@", | |
| 170 "@@@STEP_LOG_LINE@json.output@ }, @@@", | |
| 171 "@@@STEP_LOG_LINE@json.output@ {@@@", | |
| 172 "@@@STEP_LOG_LINE@json.output@ \"instance_id\": \"resolved-instance_i
d-of-release---------\", @@@", | |
| 173 "@@@STEP_LOG_LINE@json.output@ \"package\": \"infra_internal/goma/cli
ent/linux-386\"@@@", | |
| 174 "@@@STEP_LOG_LINE@json.output@ }@@@", | |
| 175 "@@@STEP_LOG_LINE@json.output@ ]@@@", | |
| 176 "@@@STEP_LOG_LINE@json.output@}@@@", | |
| 177 "@@@STEP_LOG_END@json.output@@@" | |
| 178 ] | |
| 179 }, | |
| 180 { | |
| 181 "cmd": [ | |
| 182 "python", | |
| 183 "-u", | |
| 184 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | |
| 185 "runhooks" | |
| 186 ], | |
| 187 "cwd": "[BUILDER_CACHE]/Android32_Builder/src", | |
| 188 "env": { | |
| 189 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | |
| 190 "GYP_CROSSCOMPILE": "1", | |
| 191 "GYP_DEFINES": "OS=android component=static_library fastbuild=1 gomadir='[
CACHE]/cipd/goma' target_arch=arm test_isolation_mode=prepare use_goma=1", | |
| 192 "PATH": "[BUILDER_CACHE]/Android32_Builder/src/third_party/android_tools/s
dk/platform-tools:[BUILDER_CACHE]/Android32_Builder/src/build/android:%(PATH)s:R
ECIPE_PACKAGE_REPO[depot_tools]" | |
| 193 }, | |
| 194 "name": "gclient runhooks" | |
| 195 }, | |
| 196 { | |
| 197 "cmd": [ | |
| 198 "python", | |
| 199 "-u", | |
| 200 "[BUILDER_CACHE]/Android32_Builder/src/tools/mb/mb.py", | |
| 201 "gen", | |
| 202 "-m", | |
| 203 "client.webrtc", | |
| 204 "-b", | |
| 205 "Android32 Builder", | |
| 206 "--config-file", | |
| 207 "[BUILDER_CACHE]/Android32_Builder/src/webrtc/build/mb_config.pyl", | |
| 208 "--goma-dir", | |
| 209 "[CACHE]/cipd/goma", | |
| 210 "--swarming-targets-file", | |
| 211 "AppRTCMobileTest\nandroid_junit_tests\naudio_decoder_unittests\ncommon_au
dio_unittests\ncommon_video_unittests\nlibjingle_peerconnection_android_unittest
\nmodules_tests\nmodules_unittests\npeerconnection_unittests\nrtc_stats_unittest
s\nrtc_unittests\nsystem_wrappers_unittests\ntest_support_unittests\ntools_unitt
ests\nvideo_engine_tests\nvoice_engine_unittests\nwebrtc_nonparallel_tests\n", | |
| 212 "--gyp-script=[BUILDER_CACHE]/Android32_Builder/src/webrtc/build/gyp_webrt
c.py", | |
| 213 "//out/Release" | |
| 214 ], | |
| 215 "cwd": "[BUILDER_CACHE]/Android32_Builder/src", | |
| 216 "env": { | |
| 217 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json" | |
| 218 }, | |
| 219 "name": "generate_build_files", | |
| 220 "~followup_annotations": [ | |
| 221 "@@@STEP_LOG_LINE@swarming-targets-file.txt@AppRTCMobileTest@@@", | |
| 222 "@@@STEP_LOG_LINE@swarming-targets-file.txt@android_junit_tests@@@", | |
| 223 "@@@STEP_LOG_LINE@swarming-targets-file.txt@audio_decoder_unittests@@@", | |
| 224 "@@@STEP_LOG_LINE@swarming-targets-file.txt@common_audio_unittests@@@", | |
| 225 "@@@STEP_LOG_LINE@swarming-targets-file.txt@common_video_unittests@@@", | |
| 226 "@@@STEP_LOG_LINE@swarming-targets-file.txt@libjingle_peerconnection_andro
id_unittest@@@", | |
| 227 "@@@STEP_LOG_LINE@swarming-targets-file.txt@modules_tests@@@", | |
| 228 "@@@STEP_LOG_LINE@swarming-targets-file.txt@modules_unittests@@@", | |
| 229 "@@@STEP_LOG_LINE@swarming-targets-file.txt@peerconnection_unittests@@@", | |
| 230 "@@@STEP_LOG_LINE@swarming-targets-file.txt@rtc_stats_unittests@@@", | |
| 231 "@@@STEP_LOG_LINE@swarming-targets-file.txt@rtc_unittests@@@", | |
| 232 "@@@STEP_LOG_LINE@swarming-targets-file.txt@system_wrappers_unittests@@@", | |
| 233 "@@@STEP_LOG_LINE@swarming-targets-file.txt@test_support_unittests@@@", | |
| 234 "@@@STEP_LOG_LINE@swarming-targets-file.txt@tools_unittests@@@", | |
| 235 "@@@STEP_LOG_LINE@swarming-targets-file.txt@video_engine_tests@@@", | |
| 236 "@@@STEP_LOG_LINE@swarming-targets-file.txt@voice_engine_unittests@@@", | |
| 237 "@@@STEP_LOG_LINE@swarming-targets-file.txt@webrtc_nonparallel_tests@@@", | |
| 238 "@@@STEP_LOG_END@swarming-targets-file.txt@@@" | |
| 239 ] | |
| 240 }, | |
| 241 { | |
| 242 "cmd": [ | |
| 243 "python", | |
| 244 "-u", | |
| 245 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py", | |
| 246 "--show-path", | |
| 247 "python", | |
| 248 "RECIPE_PACKAGE_REPO[build]/scripts/slave/compile.py", | |
| 249 "--gsutil-py-path", | |
| 250 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py", | |
| 251 "--ninja-path", | |
| 252 "RECIPE_PACKAGE_REPO[depot_tools]/ninja", | |
| 253 "--target", | |
| 254 "Release", | |
| 255 "--src-dir", | |
| 256 "[BUILDER_CACHE]/Android32_Builder/src", | |
| 257 "--goma-cache-dir", | |
| 258 "[GOMA_CACHE]", | |
| 259 "--buildbot-buildername", | |
| 260 "Android32 Builder", | |
| 261 "--buildbot-mastername", | |
| 262 "client.webrtc", | |
| 263 "--buildbot-slavename", | |
| 264 "slavename", | |
| 265 "--goma-deps-cache-file", | |
| 266 "Android32_Builder.gomadeps", | |
| 267 "--compiler", | |
| 268 "goma", | |
| 269 "--goma-jsonstatus", | |
| 270 "/path/to/tmp/json", | |
| 271 "--goma-service-account-json-file", | |
| 272 "/creds/service_accounts/service-account-goma-client.json", | |
| 273 "--goma-dir", | |
| 274 "[CACHE]/cipd/goma", | |
| 275 "--" | |
| 276 ], | |
| 277 "env": { | |
| 278 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | |
| 279 "PATH": "[BUILDER_CACHE]/Android32_Builder/src/third_party/android_tools/s
dk/platform-tools:[BUILDER_CACHE]/Android32_Builder/src/build/android:%(PATH)s" | |
| 280 }, | |
| 281 "name": "compile", | |
| 282 "~followup_annotations": [ | |
| 283 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@", | |
| 284 "@@@STEP_LOG_END@json.output (invalid)@@@" | |
| 285 ] | |
| 286 }, | |
| 287 { | |
| 288 "cmd": [ | |
| 289 "python", | |
| 290 "-u", | |
| 291 "[BUILDER_CACHE]/Android32_Builder/src/tools/determinism/remove_build_meta
data.py", | |
| 292 "--build-dir", | |
| 293 "[BUILDER_CACHE]/Android32_Builder/src/out/Release" | |
| 294 ], | |
| 295 "cwd": "[SLAVE_BUILD]", | |
| 296 "name": "remove_build_metadata" | |
| 297 }, | |
| 298 { | |
| 299 "cmd": [ | |
| 300 "python", | |
| 301 "-u", | |
| 302 "RECIPE_MODULE[build::isolate]/resources/isolate.py", | |
| 303 "[BUILDER_CACHE]/Android32_Builder/src/tools/swarming_client", | |
| 304 "batcharchive", | |
| 305 "--dump-json", | |
| 306 "/path/to/tmp/json", | |
| 307 "--isolate-server", | |
| 308 "https://isolateserver.appspot.com", | |
| 309 "[BUILDER_CACHE]/Android32_Builder/src/out/Release/AppRTCMobileTest.isolat
ed.gen.json", | |
| 310 "[BUILDER_CACHE]/Android32_Builder/src/out/Release/android_junit_tests.iso
lated.gen.json", | |
| 311 "[BUILDER_CACHE]/Android32_Builder/src/out/Release/audio_decoder_unittests
.isolated.gen.json", | |
| 312 "[BUILDER_CACHE]/Android32_Builder/src/out/Release/common_audio_unittests.
isolated.gen.json", | |
| 313 "[BUILDER_CACHE]/Android32_Builder/src/out/Release/common_video_unittests.
isolated.gen.json", | |
| 314 "[BUILDER_CACHE]/Android32_Builder/src/out/Release/libjingle_peerconnectio
n_android_unittest.isolated.gen.json", | |
| 315 "[BUILDER_CACHE]/Android32_Builder/src/out/Release/modules_tests.isolated.
gen.json", | |
| 316 "[BUILDER_CACHE]/Android32_Builder/src/out/Release/modules_unittests.isola
ted.gen.json", | |
| 317 "[BUILDER_CACHE]/Android32_Builder/src/out/Release/peerconnection_unittest
s.isolated.gen.json", | |
| 318 "[BUILDER_CACHE]/Android32_Builder/src/out/Release/rtc_stats_unittests.iso
lated.gen.json", | |
| 319 "[BUILDER_CACHE]/Android32_Builder/src/out/Release/rtc_unittests.isolated.
gen.json", | |
| 320 "[BUILDER_CACHE]/Android32_Builder/src/out/Release/system_wrappers_unittes
ts.isolated.gen.json", | |
| 321 "[BUILDER_CACHE]/Android32_Builder/src/out/Release/test_support_unittests.
isolated.gen.json", | |
| 322 "[BUILDER_CACHE]/Android32_Builder/src/out/Release/tools_unittests.isolate
d.gen.json", | |
| 323 "[BUILDER_CACHE]/Android32_Builder/src/out/Release/video_engine_tests.isol
ated.gen.json", | |
| 324 "[BUILDER_CACHE]/Android32_Builder/src/out/Release/voice_engine_unittests.
isolated.gen.json", | |
| 325 "[BUILDER_CACHE]/Android32_Builder/src/out/Release/webrtc_nonparallel_test
s.isolated.gen.json" | |
| 326 ], | |
| 327 "name": "isolate tests", | |
| 328 "~followup_annotations": [ | |
| 329 "@@@STEP_LOG_LINE@json.output@{@@@", | |
| 330 "@@@STEP_LOG_LINE@json.output@ \"AppRTCMobileTest\": \"[dummy hash for Ap
pRTCMobileTest]\", @@@", | |
| 331 "@@@STEP_LOG_LINE@json.output@ \"android_junit_tests\": \"[dummy hash for
android_junit_tests]\", @@@", | |
| 332 "@@@STEP_LOG_LINE@json.output@ \"audio_decoder_unittests\": \"[dummy hash
for audio_decoder_unittests]\", @@@", | |
| 333 "@@@STEP_LOG_LINE@json.output@ \"common_audio_unittests\": \"[dummy hash
for common_audio_unittests]\", @@@", | |
| 334 "@@@STEP_LOG_LINE@json.output@ \"common_video_unittests\": \"[dummy hash
for common_video_unittests]\", @@@", | |
| 335 "@@@STEP_LOG_LINE@json.output@ \"libjingle_peerconnection_android_unittes
t\": \"[dummy hash for libjingle_peerconnection_android_unittest]\", @@@", | |
| 336 "@@@STEP_LOG_LINE@json.output@ \"modules_tests\": \"[dummy hash for modul
es_tests]\", @@@", | |
| 337 "@@@STEP_LOG_LINE@json.output@ \"modules_unittests\": \"[dummy hash for m
odules_unittests]\", @@@", | |
| 338 "@@@STEP_LOG_LINE@json.output@ \"peerconnection_unittests\": \"[dummy has
h for peerconnection_unittests]\", @@@", | |
| 339 "@@@STEP_LOG_LINE@json.output@ \"rtc_stats_unittests\": \"[dummy hash for
rtc_stats_unittests]\", @@@", | |
| 340 "@@@STEP_LOG_LINE@json.output@ \"rtc_unittests\": \"[dummy hash for rtc_u
nittests]\", @@@", | |
| 341 "@@@STEP_LOG_LINE@json.output@ \"system_wrappers_unittests\": \"[dummy ha
sh for system_wrappers_unittests]\", @@@", | |
| 342 "@@@STEP_LOG_LINE@json.output@ \"test_support_unittests\": \"[dummy hash
for test_support_unittests]\", @@@", | |
| 343 "@@@STEP_LOG_LINE@json.output@ \"tools_unittests\": \"[dummy hash for too
ls_unittests]\", @@@", | |
| 344 "@@@STEP_LOG_LINE@json.output@ \"video_engine_tests\": \"[dummy hash for
video_engine_tests]\", @@@", | |
| 345 "@@@STEP_LOG_LINE@json.output@ \"voice_engine_unittests\": \"[dummy hash
for voice_engine_unittests]\", @@@", | |
| 346 "@@@STEP_LOG_LINE@json.output@ \"webrtc_nonparallel_tests\": \"[dummy has
h for webrtc_nonparallel_tests]\"@@@", | |
| 347 "@@@STEP_LOG_LINE@json.output@}@@@", | |
| 348 "@@@STEP_LOG_END@json.output@@@", | |
| 349 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"AppRTCMobileTest\": \"[dummy hash f
or AppRTCMobileTest]\", \"android_junit_tests\": \"[dummy hash for android_junit
_tests]\", \"audio_decoder_unittests\": \"[dummy hash for audio_decoder_unittest
s]\", \"common_audio_unittests\": \"[dummy hash for common_audio_unittests]\", \
"common_video_unittests\": \"[dummy hash for common_video_unittests]\", \"libjin
gle_peerconnection_android_unittest\": \"[dummy hash for libjingle_peerconnectio
n_android_unittest]\", \"modules_tests\": \"[dummy hash for modules_tests]\", \"
modules_unittests\": \"[dummy hash for modules_unittests]\", \"peerconnection_un
ittests\": \"[dummy hash for peerconnection_unittests]\", \"rtc_stats_unittests\
": \"[dummy hash for rtc_stats_unittests]\", \"rtc_unittests\": \"[dummy hash fo
r rtc_unittests]\", \"system_wrappers_unittests\": \"[dummy hash for system_wrap
pers_unittests]\", \"test_support_unittests\": \"[dummy hash for test_support_un
ittests]\", \"tools_unittests\": \"[dummy hash for tools_unittests]\", \"video_e
ngine_tests\": \"[dummy hash for video_engine_tests]\", \"voice_engine_unittests
\": \"[dummy hash for voice_engine_unittests]\", \"webrtc_nonparallel_tests\": \
"[dummy hash for webrtc_nonparallel_tests]\"}@@@" | |
| 350 ] | |
| 351 }, | |
| 352 { | |
| 353 "allow_subannotations": true, | |
| 354 "cmd": [ | |
| 355 "python", | |
| 356 "-u", | |
| 357 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py", | |
| 358 "--show-path", | |
| 359 "python", | |
| 360 "RECIPE_PACKAGE_REPO[build]/scripts/slave/zip_build.py", | |
| 361 "--target", | |
| 362 "Release", | |
| 363 "--gsutil-py-path", | |
| 364 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py", | |
| 365 "--staging-dir", | |
| 366 "[CACHE]/chrome_staging", | |
| 367 "--src-dir", | |
| 368 "[BUILDER_CACHE]/Android32_Builder/src", | |
| 369 "--build-url", | |
| 370 "gs://chromium-webrtc/client.webrtc/Android32 Builder", | |
| 371 "--build_revision", | |
| 372 "f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9", | |
| 373 "--factory-properties", | |
| 374 "{\"BUILD_CONFIG\": \"Release\", \"buildername\": \"Android32 Builder\", \
"buildnumber\": 1337, \"mastername\": \"client.webrtc\", \"path_config\": \"kitc
hen\", \"recipe\": \"webrtc/standalone\", \"revision\": \"12345\", \"slavename\"
: \"slavename\"}", | |
| 375 "--build-properties", | |
| 376 "{\"BUILD_CONFIG\": \"Release\", \"buildername\": \"Android32 Builder\", \
"buildnumber\": 1337, \"mastername\": \"client.webrtc\", \"path_config\": \"kitc
hen\", \"recipe\": \"webrtc/standalone\", \"revision\": \"12345\", \"slavename\"
: \"slavename\"}" | |
| 377 ], | |
| 378 "name": "package build" | |
| 379 }, | |
| 380 { | |
| 381 "cmd": [ | |
| 382 "python", | |
| 383 "-u", | |
| 384 "RECIPE_MODULE[build::zip]/resources/zip.py" | |
| 385 ], | |
| 386 "name": "AppRTCMobile zip archive", | |
| 387 "stdin": "{\"entries\": [{\"archive_name\": null, \"path\": \"[BUILDER_CACHE
]/Android32_Builder/src/out/Release/apks/AppRTCMobile.apk\", \"type\": \"file\"}
], \"output\": \"[SLAVE_BUILD]/AppRTCMobile_apk.zip\", \"root\": \"[BUILDER_CACH
E]/Android32_Builder/src/out/Release/apks\"}" | |
| 388 }, | |
| 389 { | |
| 390 "cmd": [ | |
| 391 "python", | |
| 392 "-u", | |
| 393 "RECIPE_MODULE[build::gsutil]/resources/gsutil_wrapper.py", | |
| 394 "--", | |
| 395 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py", | |
| 396 "----", | |
| 397 "cp", | |
| 398 "-a", | |
| 399 "public-read", | |
| 400 "[SLAVE_BUILD]/AppRTCMobile_apk.zip", | |
| 401 "gs://chromium-webrtc/client.webrtc/Android32 Builder/AppRTCMobile_apk_170
242.zip" | |
| 402 ], | |
| 403 "name": "gsutil upload", | |
| 404 "~followup_annotations": [ | |
| 405 "@@@STEP_LINK@gsutil.upload@https://storage.googleapis.com/chromium-webrtc
/client.webrtc/Android32 Builder/AppRTCMobile_apk_170242.zip@@@" | |
| 406 ] | |
| 407 }, | |
| 408 { | |
| 409 "cmd": [], | |
| 410 "name": "trigger", | |
| 411 "trigger_specs": [ | |
| 412 { | |
| 413 "builder_name": "Android32 Tests (L Nexus5)", | |
| 414 "properties": { | |
| 415 "parent_got_revision": "f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9", | |
| 416 "parent_got_revision_cp": "refs/heads/master@{#170242}", | |
| 417 "revision": "f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9" | |
| 418 } | |
| 419 }, | |
| 420 { | |
| 421 "builder_name": "Android32 Tests (L Nexus7.2)", | |
| 422 "properties": { | |
| 423 "parent_got_revision": "f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9", | |
| 424 "parent_got_revision_cp": "refs/heads/master@{#170242}", | |
| 425 "revision": "f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9" | |
| 426 } | |
| 427 }, | |
| 428 { | |
| 429 "builder_name": "Android32 Tests (M Nexus5X)", | |
| 430 "properties": { | |
| 431 "parent_got_revision": "f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9", | |
| 432 "parent_got_revision_cp": "refs/heads/master@{#170242}", | |
| 433 "revision": "f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9" | |
| 434 } | |
| 435 } | |
| 436 ], | |
| 437 "~followup_annotations": [ | |
| 438 "@@@STEP_TEXT@Android32 Tests (L Nexus5)<br />Android32 Tests (L Nexus7.2)
<br />Android32 Tests (M Nexus5X)@@@" | |
| 439 ] | |
| 440 }, | |
| 441 { | |
| 442 "name": "$result", | |
| 443 "recipe_result": null, | |
| 444 "status_code": 0 | |
| 445 } | |
| 446 ] | |
| OLD | NEW |