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

Side by Side Diff: scripts/slave/recipes/libvpx/unittests.expected/basic_linux_64.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 "\nimport os, sys, shutil\nroot = sys.argv[1]\nnuke_dirs = sys.argv[2:]\nf or fname in os.listdir(root):\n path = os.path.join(root, fname)\n if os.path. isfile(path):\n os.unlink(path)\n elif fname in nuke_dirs:\n shutil.rmtre e(path)\n", 6 "\nimport os, sys, shutil\nroot = sys.argv[1]\nnuke_dirs = sys.argv[2:]\nf or fname in os.listdir(root):\n path = os.path.join(root, fname)\n if os.path. isfile(path):\n os.unlink(path)\n elif fname in nuke_dirs:\n shutil.rmtre e(path)\n",
7 "[SLAVE_BUILD]", 7 "[SLAVE_BUILD]",
8 "libs", 8 "libs",
9 "obj", 9 "obj",
10 "vp8", 10 "vp8",
11 "vp9", 11 "vp9",
12 "vpx", 12 "vpx",
13 "vpx_mem", 13 "vpx_mem",
14 "vpx_ports", 14 "vpx_ports",
15 "vpx_scale", 15 "vpx_scale",
16 "third_party" 16 "third_party"
17 ], 17 ],
18 "cwd": "[SLAVE_BUILD]",
18 "name": "clean_build", 19 "name": "clean_build",
19 "~followup_annotations": [ 20 "~followup_annotations": [
20 "@@@STEP_LOG_LINE@python.inline@@@@", 21 "@@@STEP_LOG_LINE@python.inline@@@@",
21 "@@@STEP_LOG_LINE@python.inline@import os, sys, shutil@@@", 22 "@@@STEP_LOG_LINE@python.inline@import os, sys, shutil@@@",
22 "@@@STEP_LOG_LINE@python.inline@root = sys.argv[1]@@@", 23 "@@@STEP_LOG_LINE@python.inline@root = sys.argv[1]@@@",
23 "@@@STEP_LOG_LINE@python.inline@nuke_dirs = sys.argv[2:]@@@", 24 "@@@STEP_LOG_LINE@python.inline@nuke_dirs = sys.argv[2:]@@@",
24 "@@@STEP_LOG_LINE@python.inline@for fname in os.listdir(root):@@@", 25 "@@@STEP_LOG_LINE@python.inline@for fname in os.listdir(root):@@@",
25 "@@@STEP_LOG_LINE@python.inline@ path = os.path.join(root, fname)@@@", 26 "@@@STEP_LOG_LINE@python.inline@ path = os.path.join(root, fname)@@@",
26 "@@@STEP_LOG_LINE@python.inline@ if os.path.isfile(path):@@@", 27 "@@@STEP_LOG_LINE@python.inline@ if os.path.isfile(path):@@@",
27 "@@@STEP_LOG_LINE@python.inline@ os.unlink(path)@@@", 28 "@@@STEP_LOG_LINE@python.inline@ os.unlink(path)@@@",
28 "@@@STEP_LOG_LINE@python.inline@ elif fname in nuke_dirs:@@@", 29 "@@@STEP_LOG_LINE@python.inline@ elif fname in nuke_dirs:@@@",
29 "@@@STEP_LOG_LINE@python.inline@ shutil.rmtree(path)@@@", 30 "@@@STEP_LOG_LINE@python.inline@ shutil.rmtree(path)@@@",
30 "@@@STEP_LOG_END@python.inline@@@" 31 "@@@STEP_LOG_END@python.inline@@@"
31 ] 32 ]
32 }, 33 },
33 { 34 {
34 "cmd": [ 35 "cmd": [
35 "python", 36 "python",
36 "-u", 37 "-u",
37 "[BUILD]/scripts/slave/git_setup.py", 38 "[BUILD]/scripts/slave/git_setup.py",
38 "--path", 39 "--path",
39 "[SLAVE_BUILD]/libvpx", 40 "[SLAVE_BUILD]/libvpx",
40 "--url", 41 "--url",
41 "https://chromium.googlesource.com/webm/libvpx" 42 "https://chromium.googlesource.com/webm/libvpx"
42 ], 43 ],
44 "cwd": "[SLAVE_BUILD]",
43 "name": "git setup" 45 "name": "git setup"
44 }, 46 },
45 { 47 {
46 "cmd": [ 48 "cmd": [
47 "git", 49 "git",
48 "retry", 50 "retry",
49 "fetch", 51 "fetch",
50 "origin", 52 "origin",
51 "master", 53 "master",
52 "--recurse-submodules" 54 "--recurse-submodules"
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 "--init", 94 "--init",
93 "--recursive" 95 "--recursive"
94 ], 96 ],
95 "cwd": "[SLAVE_BUILD]/libvpx", 97 "cwd": "[SLAVE_BUILD]/libvpx",
96 "name": "submodule update" 98 "name": "submodule update"
97 }, 99 },
98 { 100 {
99 "cmd": [ 101 "cmd": [
100 "./libvpx/configure" 102 "./libvpx/configure"
101 ], 103 ],
104 "cwd": "[SLAVE_BUILD]",
102 "name": "configure" 105 "name": "configure"
103 }, 106 },
104 { 107 {
105 "cmd": [ 108 "cmd": [
106 "make", 109 "make",
107 "test", 110 "test",
108 "-j8" 111 "-j8"
109 ], 112 ],
113 "cwd": "[SLAVE_BUILD]",
110 "name": "run tests" 114 "name": "run tests"
111 } 115 }
112 ] 116 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698