OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "python", | 4 "python", |
5 "-u", | 5 "-u", |
6 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 6 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
7 "config", | 7 "config", |
8 "--spec", | 8 "--spec", |
9 "cache_dir = '[ROOT]/b/build/slave/cache_dir'\nsolutions = [{'deps_file':
'DEPS', 'managed': True, 'name': 'crashpad', 'url': 'https://chromium.googlesour
ce.com/crashpad/crashpad.git'}]" | 9 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': 'DEPS', 'managed':
True, 'name': 'crashpad', 'url': 'https://chromium.googlesource.com/crashpad/cra
shpad.git'}]" |
10 ], | 10 ], |
| 11 "cwd": "[SLAVE_BUILD]", |
11 "env": { | 12 "env": { |
12 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 13 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
13 }, | 14 }, |
14 "name": "gclient setup" | 15 "name": "gclient setup" |
15 }, | 16 }, |
16 { | 17 { |
17 "cmd": [ | 18 "cmd": [ |
18 "python", | 19 "python", |
19 "-u", | 20 "-u", |
20 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 21 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
21 "sync", | 22 "sync", |
22 "--nohooks", | 23 "--nohooks", |
23 "--force", | 24 "--force", |
24 "--verbose", | 25 "--verbose", |
25 "--delete_unversioned_trees", | 26 "--delete_unversioned_trees", |
26 "--output-json", | 27 "--output-json", |
27 "/path/to/tmp/json" | 28 "/path/to/tmp/json" |
28 ], | 29 ], |
| 30 "cwd": "[SLAVE_BUILD]", |
29 "env": { | 31 "env": { |
30 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 32 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
31 }, | 33 }, |
32 "name": "gclient sync", | 34 "name": "gclient sync", |
33 "~followup_annotations": [ | 35 "~followup_annotations": [ |
34 "@@@STEP_LOG_LINE@json.output@{@@@", | 36 "@@@STEP_LOG_LINE@json.output@{@@@", |
35 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", | 37 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", |
36 "@@@STEP_LOG_LINE@json.output@ \"crashpad/\": {@@@", | 38 "@@@STEP_LOG_LINE@json.output@ \"crashpad/\": {@@@", |
37 "@@@STEP_LOG_LINE@json.output@ \"revision\": 16463@@@", | 39 "@@@STEP_LOG_LINE@json.output@ \"revision\": 16463@@@", |
38 "@@@STEP_LOG_LINE@json.output@ }@@@", | 40 "@@@STEP_LOG_LINE@json.output@ }@@@", |
39 "@@@STEP_LOG_LINE@json.output@ }@@@", | 41 "@@@STEP_LOG_LINE@json.output@ }@@@", |
40 "@@@STEP_LOG_LINE@json.output@}@@@", | 42 "@@@STEP_LOG_LINE@json.output@}@@@", |
41 "@@@STEP_LOG_END@json.output@@@" | 43 "@@@STEP_LOG_END@json.output@@@" |
42 ] | 44 ] |
43 }, | 45 }, |
44 { | 46 { |
45 "cmd": [ | 47 "cmd": [ |
46 "python", | 48 "python", |
47 "-u", | 49 "-u", |
48 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 50 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
49 "runhooks" | 51 "runhooks" |
50 ], | 52 ], |
| 53 "cwd": "[SLAVE_BUILD]", |
51 "env": { | 54 "env": { |
52 "GYP_DEFINES": "target_arch=ia32", | 55 "GYP_DEFINES": "target_arch=ia32", |
53 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 56 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
54 }, | 57 }, |
55 "name": "gclient runhooks" | 58 "name": "gclient runhooks" |
56 }, | 59 }, |
57 { | 60 { |
58 "cmd": [ | 61 "cmd": [ |
59 "ninja", | 62 "ninja", |
60 "-C", | 63 "-C", |
61 "[CWD]/crashpad/out/Debug" | 64 "[SLAVE_BUILD]/crashpad/out/Debug" |
62 ], | 65 ], |
| 66 "cwd": "[SLAVE_BUILD]", |
63 "name": "compile with ninja" | 67 "name": "compile with ninja" |
64 }, | 68 }, |
65 { | 69 { |
66 "cmd": [ | 70 "cmd": [ |
67 "python", | 71 "python", |
68 "-u", | 72 "-u", |
69 "[CWD]/crashpad/build/run_tests.py", | 73 "[SLAVE_BUILD]/crashpad/build/run_tests.py", |
70 "Debug" | 74 "Debug" |
71 ], | 75 ], |
| 76 "cwd": "[SLAVE_BUILD]", |
72 "name": "run tests" | 77 "name": "run tests" |
73 }, | 78 }, |
74 { | 79 { |
75 "name": "$result", | 80 "name": "$result", |
76 "recipe_result": null, | 81 "recipe_result": null, |
77 "status_code": 0 | 82 "status_code": 0 |
78 } | 83 } |
79 ] | 84 ] |
OLD | NEW |