OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "python", | 4 "python", |
5 "-u", | 5 "-u", |
6 "[BUILD]\\scripts\\slave\\bot_update.py", | 6 "[BUILD]\\scripts\\slave\\bot_update.py", |
7 "--master", | 7 "--master", |
8 "chromium.mojo", | 8 "chromium.mojo", |
9 "--builder", | 9 "--builder", |
10 "Chromium Mojo Windows", | 10 "Chromium Mojo Windows", |
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 "python", | 454 "python", |
455 "-u", | 455 "-u", |
456 "[SLAVE_BUILD]\\src\\mojo\\tools\\apptest_runner.py", | 456 "[SLAVE_BUILD]\\src\\mojo\\tools\\apptest_runner.py", |
457 "[SLAVE_BUILD]\\src\\out\\Release", | 457 "[SLAVE_BUILD]\\src\\out\\Release", |
458 "--verbose" | 458 "--verbose" |
459 ], | 459 ], |
460 "cwd": "[SLAVE_BUILD]", | 460 "cwd": "[SLAVE_BUILD]", |
461 "name": "app_tests" | 461 "name": "app_tests" |
462 }, | 462 }, |
463 { | 463 { |
| 464 "cmd": [ |
| 465 "cat", |
| 466 "[SLAVE_BUILD]\\src\\chrome\\VERSION" |
| 467 ], |
| 468 "cwd": "[SLAVE_BUILD]", |
| 469 "name": "get version", |
| 470 "stdout": "/path/to/tmp/version", |
| 471 "~followup_annotations": [ |
| 472 "@@@STEP_TEXT@Found version 37.0.2021.0@@@" |
| 473 ] |
| 474 }, |
| 475 { |
| 476 "cmd": [ |
| 477 "python", |
| 478 "-u", |
| 479 "RECIPE_MODULE[gsutil]\\resources\\gsutil_wrapper.py", |
| 480 "--", |
| 481 "[DEPOT_TOOLS]\\gsutil.py", |
| 482 "----", |
| 483 "ls", |
| 484 "gs://mandoline/" |
| 485 ], |
| 486 "cwd": "[SLAVE_BUILD]", |
| 487 "name": "gsutil ls gs://mandoline/", |
| 488 "stdout": "/path/to/tmp/", |
| 489 "~followup_annotations": [ |
| 490 "@@@STEP_LOG_LINE@ls result stdout@@@@", |
| 491 "@@@STEP_LOG_END@ls result stdout@@@" |
| 492 ] |
| 493 }, |
| 494 { |
| 495 "cmd": [ |
| 496 "python", |
| 497 "-u", |
| 498 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 499 "[SLAVE_BUILD]\\src\\mandoline\\tools\\data\\FILES.cfg", |
| 500 "/path/to/tmp/" |
| 501 ], |
| 502 "cwd": "[SLAVE_BUILD]", |
| 503 "name": "read FILES.cfg" |
| 504 }, |
| 505 { |
464 "name": "$result", | 506 "name": "$result", |
465 "recipe_result": null, | 507 "recipe_result": null, |
466 "status_code": 0 | 508 "status_code": 0 |
467 } | 509 } |
468 ] | 510 ] |
OLD | NEW |