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

Side by Side Diff: scripts/slave/recipe_modules/chromite/example.expected/basic.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 "[DEPOT_TOOLS]/repo", 4 "[DEPOT_TOOLS]/repo",
5 "init", 5 "init",
6 "-u", 6 "-u",
7 "https://chromium.googlesource.com/chromiumos/manifest.git", 7 "https://chromium.googlesource.com/chromiumos/manifest.git",
8 "--repo-url", 8 "--repo-url",
9 "https://chromium.googlesource.com/external/repo.git" 9 "https://chromium.googlesource.com/external/repo.git"
10 ], 10 ],
11 "cwd": "[SLAVE_BUILD]",
11 "name": "repo init" 12 "name": "repo init"
12 }, 13 },
13 { 14 {
14 "cmd": [ 15 "cmd": [
15 "[DEPOT_TOOLS]/repo", 16 "[DEPOT_TOOLS]/repo",
16 "sync" 17 "sync"
17 ], 18 ],
19 "cwd": "[SLAVE_BUILD]",
18 "name": "repo sync" 20 "name": "repo sync"
19 }, 21 },
20 { 22 {
21 "cmd": [ 23 "cmd": [
22 "python", 24 "python",
23 "-u", 25 "-u",
24 "[SLAVE_BUILD]/chromite/bin/cros_sdk", 26 "[SLAVE_BUILD]/chromite/bin/cros_sdk",
25 "--cache-dir", 27 "--cache-dir",
26 ".cache", 28 ".cache",
27 "--", 29 "--",
28 "./setup_board", 30 "./setup_board",
29 "--board", 31 "--board",
30 "amd64-generic" 32 "amd64-generic"
31 ], 33 ],
34 "cwd": "[SLAVE_BUILD]",
32 "name": "setup board" 35 "name": "setup board"
33 }, 36 },
34 { 37 {
35 "cmd": [ 38 "cmd": [
36 "python", 39 "python",
37 "-u", 40 "-u",
38 "[SLAVE_BUILD]/chromite/bin/cros_sdk", 41 "[SLAVE_BUILD]/chromite/bin/cros_sdk",
39 "--", 42 "--",
40 "./build_packages", 43 "./build_packages",
41 "--board", 44 "--board",
42 "amd64-generic" 45 "amd64-generic"
43 ], 46 ],
47 "cwd": "[SLAVE_BUILD]",
44 "name": "build packages" 48 "name": "build packages"
45 }, 49 },
46 { 50 {
47 "cmd": [ 51 "cmd": [
48 "python", 52 "python",
49 "-u", 53 "-u",
50 "[SLAVE_BUILD]/chromite/bin/cros_sdk", 54 "[SLAVE_BUILD]/chromite/bin/cros_sdk",
51 "var1=value", 55 "var1=value",
52 "--", 56 "--",
53 "echo", 57 "echo",
54 "hello" 58 "hello"
55 ], 59 ],
60 "cwd": "[SLAVE_BUILD]",
56 "name": "cros_sdk" 61 "name": "cros_sdk"
57 }, 62 },
58 { 63 {
59 "allow_subannotations": true, 64 "allow_subannotations": true,
60 "cmd": [ 65 "cmd": [
61 "[SLAVE_BUILD]/chromite/bin/cbuildbot", 66 "[SLAVE_BUILD]/chromite/bin/cbuildbot",
62 "--clobber", 67 "--clobber",
63 "--build-dir", 68 "--build-dir",
64 "/here/there", 69 "/here/there",
65 "amd64-generic-full" 70 "amd64-generic-full"
66 ], 71 ],
72 "cwd": "[SLAVE_BUILD]",
67 "name": "cbuildbot" 73 "name": "cbuildbot"
68 } 74 }
69 ] 75 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698