OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "python", | 4 "python", |
5 "-u", | 5 "-u", |
6 "import sys; sys.exit(0)" | 6 "import sys; sys.exit(0)" |
7 ], | 7 ], |
8 "name": "success", | 8 "name": "success", |
9 "~followup_annotations": [ | 9 "~followup_annotations": [ |
10 "@@@STEP_LOG_LINE@success@This step is a success@@@", | 10 "@@@STEP_LOG_LINE@success@This step is a success@@@", |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 "-u", | 42 "-u", |
43 "print \"Hello World!\"" | 43 "print \"Hello World!\"" |
44 ], | 44 ], |
45 "name": "inline", | 45 "name": "inline", |
46 "~followup_annotations": [ | 46 "~followup_annotations": [ |
47 "@@@STEP_LOG_LINE@python.inline@print \"Hello World!\"@@@", | 47 "@@@STEP_LOG_LINE@python.inline@print \"Hello World!\"@@@", |
48 "@@@STEP_LOG_END@python.inline@@@" | 48 "@@@STEP_LOG_END@python.inline@@@" |
49 ] | 49 ] |
50 }, | 50 }, |
51 { | 51 { |
| 52 "cmd": [ |
| 53 "vpython", |
| 54 "-u", |
| 55 "RECIPE[recipe_engine::python:example].resources/test.py" |
| 56 ], |
| 57 "name": "run vpython.script" |
| 58 }, |
| 59 { |
| 60 "cmd": [ |
| 61 "vpython", |
| 62 "-spec", |
| 63 "RECIPE[recipe_engine::python:example].resources/test.vpython", |
| 64 "-u", |
| 65 "RECIPE[recipe_engine::python:example].resources/test.py", |
| 66 "--verify" |
| 67 ], |
| 68 "name": "run vpython.spec" |
| 69 }, |
| 70 { |
52 "name": "$result", | 71 "name": "$result", |
53 "recipe_result": null, | 72 "recipe_result": null, |
54 "status_code": 0 | 73 "status_code": 0 |
55 } | 74 } |
56 ] | 75 ] |
OLD | NEW |