OLD | NEW |
| (Empty) |
1 [ | |
2 { | |
3 "cmd": [ | |
4 "python", | |
5 "-u", | |
6 "[DEPOT_TOOLS]/gclient.py", | |
7 "config", | |
8 "--spec", | |
9 "cache_dir = None\nsolutions = [{'deps_file': 'DEPS', 'managed': True, 'na
me': 'crashpad', 'url': 'https://chromium.googlesource.com/crashpad/crashpad.git
'}]" | |
10 ], | |
11 "cwd": "[SLAVE_BUILD]", | |
12 "name": "gclient setup" | |
13 }, | |
14 { | |
15 "cmd": [ | |
16 "python", | |
17 "-u", | |
18 "[DEPOT_TOOLS]/gclient.py", | |
19 "sync", | |
20 "--nohooks", | |
21 "--force", | |
22 "--verbose", | |
23 "--delete_unversioned_trees", | |
24 "--output-json", | |
25 "/path/to/tmp/json" | |
26 ], | |
27 "cwd": "[SLAVE_BUILD]", | |
28 "name": "gclient sync", | |
29 "~followup_annotations": [ | |
30 "@@@STEP_LOG_LINE@json.output@{@@@", | |
31 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", | |
32 "@@@STEP_LOG_LINE@json.output@ \"crashpad/\": {@@@", | |
33 "@@@STEP_LOG_LINE@json.output@ \"revision\": 16463@@@", | |
34 "@@@STEP_LOG_LINE@json.output@ }@@@", | |
35 "@@@STEP_LOG_LINE@json.output@ }@@@", | |
36 "@@@STEP_LOG_LINE@json.output@}@@@", | |
37 "@@@STEP_LOG_END@json.output@@@" | |
38 ] | |
39 }, | |
40 { | |
41 "cmd": [ | |
42 "python", | |
43 "-u", | |
44 "[DEPOT_TOOLS]/gclient.py", | |
45 "runhooks" | |
46 ], | |
47 "cwd": "[SLAVE_BUILD]", | |
48 "env": { | |
49 "GYP_DEFINES": "target_arch=ia32" | |
50 }, | |
51 "name": "gclient runhooks" | |
52 }, | |
53 { | |
54 "cmd": [ | |
55 "ninja", | |
56 "-C", | |
57 "[SLAVE_BUILD]/crashpad/out/Debug" | |
58 ], | |
59 "cwd": "[SLAVE_BUILD]", | |
60 "name": "compile with ninja" | |
61 }, | |
62 { | |
63 "cmd": [ | |
64 "python", | |
65 "-u", | |
66 "[SLAVE_BUILD]/crashpad/build/run_tests.py", | |
67 "Debug" | |
68 ], | |
69 "cwd": "[SLAVE_BUILD]", | |
70 "name": "run tests" | |
71 } | |
72 ] | |
OLD | NEW |