Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(384)

Side by Side Diff: recipe_modules/path/example.expected/linux.json

Issue 1923013002: Revert of recipe engine: extract infra-specific paths out of the engine (Closed) Base URL: https://github.com/luci/recipes-py.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « recipe_modules/path/example.py ('k') | recipe_modules/path/example.expected/linux_kitchen.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "/bin/echo", 4 "/bin/echo",
5 "[TMP]/foo" 5 "[SLAVE_BUILD]/foo"
6 ], 6 ],
7 "cwd": "[SLAVE_BUILD]",
7 "name": "step1" 8 "name": "step1"
8 }, 9 },
9 { 10 {
10 "cmd": [ 11 "cmd": [
11 "echo", 12 "echo",
12 "RECIPE_MODULE[recipe_engine::path]/resources/dir/file.py" 13 "RECIPE_MODULE[recipe_engine::path]/resources/dir/file.py"
13 ], 14 ],
15 "cwd": "[SLAVE_BUILD]",
14 "name": "print resource" 16 "name": "print resource"
15 }, 17 },
16 { 18 {
17 "cmd": [ 19 "cmd": [
18 "echo", 20 "echo",
19 "RECIPE_PACKAGE_REPO[recipe_engine]/dir/file.py" 21 "RECIPE_PACKAGE_REPO[recipe_engine]/dir/file.py"
20 ], 22 ],
23 "cwd": "[SLAVE_BUILD]",
21 "name": "print package dir" 24 "name": "print package dir"
22 }, 25 },
23 { 26 {
24 "cmd": [ 27 "cmd": [
25 "/bin/echo", 28 "/bin/echo",
26 "[TMP]/checkout/jerky" 29 "[SLAVE_BUILD]/checkout/jerky"
27 ], 30 ],
31 "cwd": "[SLAVE_BUILD]",
28 "name": "checkout path" 32 "name": "checkout path"
29 }, 33 },
30 { 34 {
31 "cmd": [ 35 "cmd": [
32 "touch", 36 "touch",
33 "[TMP]/new_file" 37 "[SLAVE_BUILD]/new_file"
34 ], 38 ],
39 "cwd": "[SLAVE_BUILD]",
35 "name": "touch me" 40 "name": "touch me"
36 }, 41 },
37 { 42 {
38 "name": "$result", 43 "name": "$result",
39 "recipe_result": null, 44 "recipe_result": null,
40 "status_code": 0 45 "status_code": 0
41 } 46 }
42 ] 47 ]
OLDNEW
« no previous file with comments | « recipe_modules/path/example.py ('k') | recipe_modules/path/example.expected/linux_kitchen.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698