OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "python", | 4 "python", |
5 "-u", | 5 "-u", |
6 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", | 6 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", |
7 "--master", | 7 "--master", |
8 "chromium.tools.build", | 8 "chromium.tools.build", |
9 "--builder", | 9 "--builder", |
10 "recipe simulation tester", | 10 "recipe simulation tester", |
11 "--slave", | 11 "--slave", |
12 "TestSlavename", | 12 "TestSlavename", |
13 "--spec", | 13 "--spec", |
14 "cache_dir = '[ROOT]/b/build/slave/cache_dir'\nsolutions = [{'deps_file':
'.DEPS.git', 'managed': True, 'name': 'build', 'url': 'https://chromium.googleso
urce.com/chromium/tools/build.git'}]", | 14 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'manag
ed': True, 'name': 'build', 'url': 'https://chromium.googlesource.com/chromium/t
ools/build.git'}]", |
15 "--root", | 15 "--root", |
16 "build", | 16 "build", |
17 "--revision_mapping_file", | 17 "--revision_mapping_file", |
18 "{\"build\": \"got_revision\"}", | 18 "{\"build\": \"got_revision\"}", |
19 "--git-cache-dir", | 19 "--git-cache-dir", |
20 "[ROOT]/b/build/slave/cache_dir", | 20 "[GIT_CACHE]", |
21 "--output_json", | 21 "--output_json", |
22 "/path/to/tmp/json", | 22 "/path/to/tmp/json", |
23 "--revision", | 23 "--revision", |
24 "build@deadbeaf", | 24 "build@deadbeaf", |
25 "--force", | 25 "--force", |
26 "--output_manifest" | 26 "--output_manifest" |
27 ], | 27 ], |
| 28 "cwd": "[SLAVE_BUILD]", |
28 "env": { | 29 "env": { |
29 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 30 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
30 }, | 31 }, |
31 "name": "bot_update", | 32 "name": "bot_update", |
32 "~followup_annotations": [ | 33 "~followup_annotations": [ |
33 "@@@STEP_TEXT@Some step text@@@", | 34 "@@@STEP_TEXT@Some step text@@@", |
34 "@@@STEP_LOG_LINE@json.output@{@@@", | 35 "@@@STEP_LOG_LINE@json.output@{@@@", |
35 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", | 36 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", |
36 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", | 37 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", |
37 "@@@STEP_LOG_LINE@json.output@ \"build\": \"deadbeaf\"@@@", | 38 "@@@STEP_LOG_LINE@json.output@ \"build\": \"deadbeaf\"@@@", |
(...skipping 15 matching lines...) Expand all Loading... |
53 "@@@STEP_LOG_LINE@json.output@}@@@", | 54 "@@@STEP_LOG_LINE@json.output@}@@@", |
54 "@@@STEP_LOG_END@json.output@@@", | 55 "@@@STEP_LOG_END@json.output@@@", |
55 "@@@SET_BUILD_PROPERTY@got_revision@\"80754af91bfb6d1073585b046fe0a474ce86
8509\"@@@", | 56 "@@@SET_BUILD_PROPERTY@got_revision@\"80754af91bfb6d1073585b046fe0a474ce86
8509\"@@@", |
56 "@@@SET_BUILD_PROPERTY@got_revision_cp@\"refs/heads/master@{#270553}\"@@@" | 57 "@@@SET_BUILD_PROPERTY@got_revision_cp@\"refs/heads/master@{#270553}\"@@@" |
57 ] | 58 ] |
58 }, | 59 }, |
59 { | 60 { |
60 "cmd": [ | 61 "cmd": [ |
61 "python", | 62 "python", |
62 "-u", | 63 "-u", |
63 "[CWD]/build/scripts/slave/recipes.py", | 64 "[SLAVE_BUILD]/build/scripts/slave/recipes.py", |
64 "fetch" | 65 "fetch" |
65 ], | 66 ], |
| 67 "cwd": "[SLAVE_BUILD]", |
66 "name": "recipe fetch deps" | 68 "name": "recipe fetch deps" |
67 }, | 69 }, |
68 { | 70 { |
69 "cmd": [ | 71 "cmd": [ |
70 "python", | 72 "python", |
71 "-u", | 73 "-u", |
72 "[CWD]/build/scripts/slave/unittests/recipe_simulation_test.py", | 74 "[SLAVE_BUILD]/build/scripts/slave/unittests/recipe_simulation_test.py", |
73 "test" | 75 "test" |
74 ], | 76 ], |
| 77 "cwd": "[SLAVE_BUILD]", |
75 "name": "recipe simulation test" | 78 "name": "recipe simulation test" |
76 }, | 79 }, |
77 { | 80 { |
78 "name": "$result", | 81 "name": "$result", |
79 "recipe_result": null, | 82 "recipe_result": null, |
80 "status_code": 0 | 83 "status_code": 0 |
81 } | 84 } |
82 ] | 85 ] |
OLD | NEW |