OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "python", | 4 "python", |
5 "-u", | 5 "-u", |
6 "\nimport json\nimport sys\n\nwith open(sys.argv[1]) as f:\n content = js
on.load(f)\n\nprint json.dumps(content, indent=2)\n", | 6 "\nimport json\nimport sys\n\nwith open(sys.argv[1]) as f:\n content = js
on.load(f)\n\nprint json.dumps(content, indent=2)\n", |
7 "{\"buildername\": \"Build-Ubuntu-GCC-Arm64-Debug-Android_Vulkan\", \"buil
dnumber\": 5, \"mastername\": \"client.skia\", \"path_config\": \"kitchen\", \"r
ecipe\": \"swarm_trigger\", \"revision\": \"abc123\", \"slavename\": \"skiabot-l
inux-swarm-000\"}" | 7 "{\"buildername\": \"Build-Ubuntu-GCC-Arm64-Debug-Android_Vulkan\", \"buil
dnumber\": 5, \"mastername\": \"client.skia\", \"path_config\": \"kitchen\", \"r
ecipe\": \"swarm_trigger\", \"revision\": \"abc123\", \"slavename\": \"skiabot-l
inux-swarm-000\"}" |
8 ], | 8 ], |
9 "name": "print properties", | 9 "name": "print properties", |
10 "~followup_annotations": [ | 10 "~followup_annotations": [ |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 274 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
275 "[SLAVE_BUILD]/skia/infra/bots/assets/android_ndk_linux/VERSION", | 275 "[SLAVE_BUILD]/skia/infra/bots/assets/android_ndk_linux/VERSION", |
276 "/path/to/tmp/" | 276 "/path/to/tmp/" |
277 ], | 277 ], |
278 "name": "read android_ndk_linux VERSION" | 278 "name": "read android_ndk_linux VERSION" |
279 }, | 279 }, |
280 { | 280 { |
281 "cmd": [ | 281 "cmd": [ |
282 "python", | 282 "python", |
283 "-u", | 283 "-u", |
| 284 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 285 "[SLAVE_BUILD]/skia/infra/bots/assets/clang_linux/VERSION", |
| 286 "/path/to/tmp/" |
| 287 ], |
| 288 "name": "read clang_linux VERSION" |
| 289 }, |
| 290 { |
| 291 "cmd": [ |
| 292 "python", |
| 293 "-u", |
284 "\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", | 294 "\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", |
285 "[SLAVE_BUILD]/swarming_temp_dir", | 295 "[SLAVE_BUILD]/swarming_temp_dir", |
286 "511" | 296 "511" |
287 ], | 297 ], |
288 "name": "makedirs swarming tmp dir", | 298 "name": "makedirs swarming tmp dir", |
289 "~followup_annotations": [ | 299 "~followup_annotations": [ |
290 "@@@STEP_LOG_LINE@python.inline@@@@", | 300 "@@@STEP_LOG_LINE@python.inline@@@@", |
291 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", | 301 "@@@STEP_LOG_LINE@python.inline@import sys, os@@@", |
292 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", | 302 "@@@STEP_LOG_LINE@python.inline@path = sys.argv[1]@@@", |
293 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", | 303 "@@@STEP_LOG_LINE@python.inline@mode = int(sys.argv[2])@@@", |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
383 "revision:abc123", | 393 "revision:abc123", |
384 "--tag", | 394 "--tag", |
385 "slavename:skiabot-linux-swarm-000", | 395 "slavename:skiabot-linux-swarm-000", |
386 "--tag", | 396 "--tag", |
387 "stepname:compile_skia on Ubuntu", | 397 "stepname:compile_skia on Ubuntu", |
388 "--idempotent", | 398 "--idempotent", |
389 "--cipd-package", | 399 "--cipd-package", |
390 "android_sdk:skia/bots/android_sdk:version:0", | 400 "android_sdk:skia/bots/android_sdk:version:0", |
391 "--cipd-package", | 401 "--cipd-package", |
392 "android_ndk_linux:skia/bots/android_ndk_linux:version:0", | 402 "android_ndk_linux:skia/bots/android_ndk_linux:version:0", |
| 403 "--cipd-package", |
| 404 "clang_linux:skia/bots/clang_linux:version:0", |
393 "[dummy hash for compile_skia]", | 405 "[dummy hash for compile_skia]", |
394 "--", | 406 "--", |
395 "--workdir", | 407 "--workdir", |
396 "../../..", | 408 "../../..", |
397 "swarm_compile", | 409 "swarm_compile", |
398 "buildername=Build-Ubuntu-GCC-Arm64-Debug-Android_Vulkan", | 410 "buildername=Build-Ubuntu-GCC-Arm64-Debug-Android_Vulkan", |
399 "mastername=client.skia.compile", | 411 "mastername=client.skia.compile", |
400 "buildnumber=1", | 412 "buildnumber=1", |
401 "slavename=skiabot-dummy-compile-slave", | 413 "slavename=skiabot-dummy-compile-slave", |
402 "reason=Triggered by Skia swarm_trigger Recipe", | 414 "reason=Triggered by Skia swarm_trigger Recipe", |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
479 "@@@STEP_LINK@shard #0 isolated out@blah@@@", | 491 "@@@STEP_LINK@shard #0 isolated out@blah@@@", |
480 "@@@STEP_LINK@view steps on Milo@https://luci-milo.appspot.com/swarming/ta
sk/148aa78d7aa0000@@@" | 492 "@@@STEP_LINK@view steps on Milo@https://luci-milo.appspot.com/swarming/ta
sk/148aa78d7aa0000@@@" |
481 ] | 493 ] |
482 }, | 494 }, |
483 { | 495 { |
484 "name": "$result", | 496 "name": "$result", |
485 "recipe_result": null, | 497 "recipe_result": null, |
486 "status_code": 0 | 498 "status_code": 0 |
487 } | 499 } |
488 ] | 500 ] |
OLD | NEW |