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

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

Issue 1906323003: recipe engine: extract infra-specific paths out of the engine (Closed) Base URL: https://github.com/luci/recipes-py.git@master
Patch Set: tmp Created 4 years, 7 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
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "/bin/echo", 4 "/bin/echo",
5 "[SLAVE_BUILD]\\foo" 5 "[TMP]\\foo"
6 ], 6 ],
7 "cwd": "[SLAVE_BUILD]",
8 "name": "step1" 7 "name": "step1"
9 }, 8 },
10 { 9 {
11 "cmd": [ 10 "cmd": [
12 "echo", 11 "echo",
13 "RECIPE_MODULE[recipe_engine::path]\\resources\\dir\\file.py" 12 "RECIPE_MODULE[recipe_engine::path]\\resources\\dir\\file.py"
14 ], 13 ],
15 "cwd": "[SLAVE_BUILD]",
16 "name": "print resource" 14 "name": "print resource"
17 }, 15 },
18 { 16 {
19 "cmd": [ 17 "cmd": [
20 "echo", 18 "echo",
21 "RECIPE_PACKAGE_REPO[recipe_engine]\\dir\\file.py" 19 "RECIPE_PACKAGE_REPO[recipe_engine]\\dir\\file.py"
22 ], 20 ],
23 "cwd": "[SLAVE_BUILD]",
24 "name": "print package dir" 21 "name": "print package dir"
25 }, 22 },
26 { 23 {
27 "cmd": [ 24 "cmd": [
28 "/bin/echo", 25 "/bin/echo",
29 "[SLAVE_BUILD]\\checkout\\jerky" 26 "[TMP]\\checkout\\jerky"
30 ], 27 ],
31 "cwd": "[SLAVE_BUILD]",
32 "name": "checkout path" 28 "name": "checkout path"
33 }, 29 },
34 { 30 {
35 "cmd": [ 31 "cmd": [
36 "touch", 32 "touch",
37 "[SLAVE_BUILD]\\new_file" 33 "[TMP]\\new_file"
38 ], 34 ],
39 "cwd": "[SLAVE_BUILD]",
40 "name": "touch me" 35 "name": "touch me"
41 }, 36 },
42 { 37 {
43 "name": "$result", 38 "name": "$result",
44 "recipe_result": null, 39 "recipe_result": null,
45 "status_code": 0 40 "status_code": 0
46 } 41 }
47 ] 42 ]
OLDNEW
« no previous file with comments | « recipe_modules/path/example.expected/mac_swarming.json ('k') | recipe_modules/path/example.expected/win_kitchen.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698