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.infra", | 8 "chromium.infra", |
9 "--builder", | 9 "--builder", |
10 "build_repo_real", | 10 "build_repo_real", |
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@HEAD", | 24 "build@HEAD", |
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\": \"HEAD\"@@@", | 38 "@@@STEP_LOG_LINE@json.output@ \"build\": \"HEAD\"@@@", |
(...skipping 17 matching lines...) Expand all Loading... |
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 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py", | 64 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py", |
64 "--path", | 65 "--path", |
65 "[ROOT]/b/build/clone", | 66 "[BUILD]/clone", |
66 "--url", | 67 "--url", |
67 "https://chromium.googlesource.com/chromium/tools/build" | 68 "https://chromium.googlesource.com/chromium/tools/build" |
68 ], | 69 ], |
| 70 "cwd": "[SLAVE_BUILD]", |
69 "name": "git setup" | 71 "name": "git setup" |
70 }, | 72 }, |
71 { | 73 { |
72 "cmd": [ | 74 "cmd": [ |
73 "git", | 75 "git", |
74 "retry", | 76 "retry", |
75 "fetch", | 77 "fetch", |
76 "origin", | 78 "origin", |
77 "master" | 79 "master" |
78 ], | 80 ], |
79 "cwd": "[ROOT]/b/build/clone", | 81 "cwd": "[BUILD]/clone", |
80 "name": "git fetch" | 82 "name": "git fetch" |
81 }, | 83 }, |
82 { | 84 { |
83 "cmd": [ | 85 "cmd": [ |
84 "git", | 86 "git", |
85 "checkout", | 87 "checkout", |
86 "-f", | 88 "-f", |
87 "FETCH_HEAD" | 89 "FETCH_HEAD" |
88 ], | 90 ], |
89 "cwd": "[ROOT]/b/build/clone", | 91 "cwd": "[BUILD]/clone", |
90 "name": "git checkout" | 92 "name": "git checkout" |
91 }, | 93 }, |
92 { | 94 { |
93 "cmd": [ | 95 "cmd": [ |
94 "git", | 96 "git", |
95 "rev-parse", | 97 "rev-parse", |
96 "HEAD" | 98 "HEAD" |
97 ], | 99 ], |
98 "cwd": "[ROOT]/b/build/clone", | 100 "cwd": "[BUILD]/clone", |
99 "name": "read revision", | 101 "name": "read revision", |
100 "stdout": "/path/to/tmp/", | 102 "stdout": "/path/to/tmp/", |
101 "~followup_annotations": [ | 103 "~followup_annotations": [ |
102 "@@@STEP_TEXT@<br/>checked out 'deadbeef'<br/>@@@" | 104 "@@@STEP_TEXT@<br/>checked out 'deadbeef'<br/>@@@" |
103 ] | 105 ] |
104 }, | 106 }, |
105 { | 107 { |
106 "cmd": [ | 108 "cmd": [ |
107 "git", | 109 "git", |
108 "clean", | 110 "clean", |
109 "-f", | 111 "-f", |
110 "-d", | 112 "-d", |
111 "-x" | 113 "-x" |
112 ], | 114 ], |
113 "cwd": "[ROOT]/b/build/clone", | 115 "cwd": "[BUILD]/clone", |
114 "name": "git clean" | 116 "name": "git clean" |
115 }, | 117 }, |
116 { | 118 { |
117 "cmd": [ | 119 "cmd": [ |
118 "git", | 120 "git", |
119 "submodule", | 121 "submodule", |
120 "sync" | 122 "sync" |
121 ], | 123 ], |
122 "cwd": "[ROOT]/b/build/clone", | 124 "cwd": "[BUILD]/clone", |
123 "name": "submodule sync" | 125 "name": "submodule sync" |
124 }, | 126 }, |
125 { | 127 { |
126 "cmd": [ | 128 "cmd": [ |
127 "git", | 129 "git", |
128 "submodule", | 130 "submodule", |
129 "update", | 131 "update", |
130 "--init", | 132 "--init", |
131 "--recursive" | 133 "--recursive" |
132 ], | 134 ], |
133 "cwd": "[ROOT]/b/build/clone", | 135 "cwd": "[BUILD]/clone", |
134 "name": "submodule update" | 136 "name": "submodule update" |
135 }, | 137 }, |
136 { | 138 { |
137 "name": "$result", | 139 "name": "$result", |
138 "recipe_result": null, | 140 "recipe_result": null, |
139 "status_code": 0 | 141 "status_code": 0 |
140 } | 142 } |
141 ] | 143 ] |
OLD | NEW |