OLD | NEW |
(Empty) | |
| 1 [ |
| 2 { |
| 3 "cmd": [ |
| 4 "/bin/echo", |
| 5 "[SLAVE_BUILD]/foo" |
| 6 ], |
| 7 "cwd": "[SLAVE_BUILD]", |
| 8 "name": "step1" |
| 9 }, |
| 10 { |
| 11 "cmd": [ |
| 12 "echo", |
| 13 "RECIPE_MODULE[recipe_engine::path]/resources/dir/file.py" |
| 14 ], |
| 15 "cwd": "[SLAVE_BUILD]", |
| 16 "name": "print resource" |
| 17 }, |
| 18 { |
| 19 "cmd": [ |
| 20 "echo", |
| 21 "RECIPE_PACKAGE_REPO[recipe_engine]/dir/file.py" |
| 22 ], |
| 23 "cwd": "[SLAVE_BUILD]", |
| 24 "name": "print package dir" |
| 25 }, |
| 26 { |
| 27 "cmd": [ |
| 28 "/bin/echo", |
| 29 "[SLAVE_BUILD]/checkout/jerky" |
| 30 ], |
| 31 "cwd": "[SLAVE_BUILD]", |
| 32 "name": "checkout path" |
| 33 }, |
| 34 { |
| 35 "cmd": [ |
| 36 "touch", |
| 37 "[SLAVE_BUILD]/new_file" |
| 38 ], |
| 39 "cwd": "[SLAVE_BUILD]", |
| 40 "name": "touch me" |
| 41 }, |
| 42 { |
| 43 "name": "$result", |
| 44 "recipe_result": null, |
| 45 "status_code": 0 |
| 46 } |
| 47 ] |
OLD | NEW |