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 Linux", | 10 "Chromium Mojo Linux", |
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
469 "python", | 469 "python", |
470 "-u", | 470 "-u", |
471 "[SLAVE_BUILD]/src/mojo/tools/apptest_runner.py", | 471 "[SLAVE_BUILD]/src/mojo/tools/apptest_runner.py", |
472 "[SLAVE_BUILD]/src/out/Release", | 472 "[SLAVE_BUILD]/src/out/Release", |
473 "--verbose" | 473 "--verbose" |
474 ], | 474 ], |
475 "cwd": "[SLAVE_BUILD]", | 475 "cwd": "[SLAVE_BUILD]", |
476 "name": "app_tests" | 476 "name": "app_tests" |
477 }, | 477 }, |
478 { | 478 { |
| 479 "cmd": [ |
| 480 "cat", |
| 481 "[SLAVE_BUILD]/src/chrome/VERSION" |
| 482 ], |
| 483 "cwd": "[SLAVE_BUILD]", |
| 484 "name": "get version", |
| 485 "stdout": "/path/to/tmp/version", |
| 486 "~followup_annotations": [ |
| 487 "@@@STEP_TEXT@Found version 37.0.2021.0@@@" |
| 488 ] |
| 489 }, |
| 490 { |
| 491 "cmd": [ |
| 492 "python", |
| 493 "-u", |
| 494 "RECIPE_MODULE[gsutil]/resources/gsutil_wrapper.py", |
| 495 "--", |
| 496 "[DEPOT_TOOLS]/gsutil.py", |
| 497 "----", |
| 498 "ls", |
| 499 "gs://mandoline/" |
| 500 ], |
| 501 "cwd": "[SLAVE_BUILD]", |
| 502 "name": "gsutil ls gs://mandoline/", |
| 503 "stdout": "/path/to/tmp/", |
| 504 "~followup_annotations": [ |
| 505 "@@@STEP_LOG_LINE@ls result stdout@@@@", |
| 506 "@@@STEP_LOG_END@ls result stdout@@@" |
| 507 ] |
| 508 }, |
| 509 { |
| 510 "cmd": [ |
| 511 "python", |
| 512 "-u", |
| 513 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
| 514 "[SLAVE_BUILD]/src/mandoline/tools/data/FILES.cfg", |
| 515 "/path/to/tmp/" |
| 516 ], |
| 517 "cwd": "[SLAVE_BUILD]", |
| 518 "name": "read FILES.cfg" |
| 519 }, |
| 520 { |
| 521 "cmd": [ |
| 522 "python", |
| 523 "-u", |
| 524 "RECIPE_MODULE[gsutil]/resources/gsutil_wrapper.py", |
| 525 "--", |
| 526 "[DEPOT_TOOLS]/gsutil.py", |
| 527 "----", |
| 528 "cp", |
| 529 "[SLAVE_BUILD]/src/out/Release/foo", |
| 530 "gs://mandoline/37.0.2021.0/linux/foo" |
| 531 ], |
| 532 "cwd": "[SLAVE_BUILD]", |
| 533 "name": "gsutil upload", |
| 534 "~followup_annotations": [ |
| 535 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/mandoline/37.
0.2021.0/linux/foo@@@" |
| 536 ] |
| 537 }, |
| 538 { |
479 "name": "$result", | 539 "name": "$result", |
480 "recipe_result": null, | 540 "recipe_result": null, |
481 "status_code": 0 | 541 "status_code": 0 |
482 } | 542 } |
483 ] | 543 ] |
OLD | NEW |