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

Side by Side Diff: scripts/slave/recipe_modules/tryserver/example.expected/with_git_patch.json

Issue 1115453002: Recipes: make cwd default to slave_build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: rebase Created 5 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 | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "[BUILD]/scripts/slave/git_setup.py", 6 "[BUILD]/scripts/slave/git_setup.py",
7 "--path", 7 "--path",
8 "[TMP_BASE]/patch_tmp_1", 8 "[TMP_BASE]/patch_tmp_1",
9 "--url", 9 "--url",
10 "http://patch.url/" 10 "http://patch.url/"
11 ], 11 ],
12 "cwd": "[SLAVE_BUILD]",
12 "name": "patch git setup" 13 "name": "patch git setup"
13 }, 14 },
14 { 15 {
15 "cmd": [ 16 "cmd": [
16 "git", 17 "git",
17 "fetch", 18 "fetch",
18 "origin", 19 "origin",
19 "johndoe#123.diff" 20 "johndoe#123.diff"
20 ], 21 ],
21 "cwd": "[TMP_BASE]/patch_tmp_1", 22 "cwd": "[TMP_BASE]/patch_tmp_1",
(...skipping 26 matching lines...) Expand all
48 "--dir", 49 "--dir",
49 "[SLAVE_BUILD]", 50 "[SLAVE_BUILD]",
50 "--force", 51 "--force",
51 "--forward", 52 "--forward",
52 "--remove-empty-files", 53 "--remove-empty-files",
53 "--strip", 54 "--strip",
54 "0", 55 "0",
55 "--input", 56 "--input",
56 "[TMP_BASE]/patch_tmp_1/patch.diff" 57 "[TMP_BASE]/patch_tmp_1/patch.diff"
57 ], 58 ],
59 "cwd": "[SLAVE_BUILD]",
58 "name": "apply patch" 60 "name": "apply patch"
59 }, 61 },
60 { 62 {
61 "cmd": [ 63 "cmd": [
62 "rm", 64 "rm",
63 "-rf", 65 "-rf",
64 "[TMP_BASE]/patch_tmp_1" 66 "[TMP_BASE]/patch_tmp_1"
65 ], 67 ],
68 "cwd": "[SLAVE_BUILD]",
66 "name": "remove patch" 69 "name": "remove patch"
67 } 70 }
68 ] 71 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698