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

Side by Side Diff: scripts/slave/recipes/infra/sync_submodules.expected/basic.json

Issue 2041743002: Add sync_submodules builders on master.chromium.infra. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Test expectations Created 4 years, 6 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
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py", 6 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
7 "--path", 7 "--path",
8 "[CWD]/src", 8 "[CWD]/src",
9 "--url", 9 "--url",
10 "https://chromium.googlesource.com/chromium/src" 10 "https://chromium.googlesource.com/chromium/src"
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 "cmd": [ 110 "cmd": [
111 "git", 111 "git",
112 "push", 112 "push",
113 "destination_repo", 113 "destination_repo",
114 "+HEAD:refs/heads/master" 114 "+HEAD:refs/heads/master"
115 ], 115 ],
116 "cwd": "[CWD]/src", 116 "cwd": "[CWD]/src",
117 "name": "git push" 117 "name": "git push"
118 }, 118 },
119 { 119 {
120 "cmd": [
121 "python",
122 "-u",
123 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py",
124 "--path",
125 "[CWD]/infra",
126 "--url",
127 "https://chromium.googlesource.com/infra/infra"
128 ],
129 "name": "git setup (2)"
130 },
131 {
132 "cmd": [
133 "git",
134 "retry",
135 "fetch",
136 "origin",
137 "master"
138 ],
139 "cwd": "[CWD]/infra",
140 "name": "git fetch (3)"
141 },
142 {
143 "cmd": [
144 "git",
145 "checkout",
146 "-f",
147 "FETCH_HEAD"
148 ],
149 "cwd": "[CWD]/infra",
150 "name": "git checkout (2)"
151 },
152 {
153 "cmd": [
154 "git",
155 "rev-parse",
156 "HEAD"
157 ],
158 "cwd": "[CWD]/infra",
159 "name": "read revision (2)",
160 "stdout": "/path/to/tmp/",
161 "~followup_annotations": [
162 "@@@STEP_TEXT@<br/>checked out 'deadbeef'<br/>@@@"
163 ]
164 },
165 {
166 "cmd": [
167 "git",
168 "clean",
169 "-f",
170 "-d",
171 "-x"
172 ],
173 "cwd": "[CWD]/infra",
174 "name": "git clean (2)"
175 },
176 {
177 "cmd": [
178 "git",
179 "remote",
180 "remove",
181 "destination_repo"
182 ],
183 "cwd": "[CWD]/infra",
184 "name": "git remote (3)"
185 },
186 {
187 "cmd": [
188 "git",
189 "remote",
190 "add",
191 "destination_repo",
192 "https://chromium.googlesource.com/infra/infra/codesearch"
193 ],
194 "cwd": "[CWD]/infra",
195 "name": "git remote (4)"
196 },
197 {
198 "cmd": [
199 "git",
200 "fetch",
201 "destination_repo",
202 "+refs/heads/master"
203 ],
204 "cwd": "[CWD]/infra",
205 "name": "git fetch (4)"
206 },
207 {
208 "cmd": [
209 "python",
210 "RECIPE_MODULE[build::sync_submodules]/resources/deps2submodules.py",
211 "DEPS"
212 ],
213 "cwd": "[CWD]/infra",
214 "name": "deps2submodules (2)"
215 },
216 {
217 "cmd": [
218 "git",
219 "commit",
220 "-m",
221 "Update submodule references.\n\nThis is an artificial commit to make depe ndencies specified in the DEPS file\nvisible to Codesearch.\nThis commit does no t exist in the underlying repository."
222 ],
223 "cwd": "[CWD]/infra",
224 "name": "git commit (2)"
225 },
226 {
227 "cmd": [
228 "git",
229 "push",
230 "destination_repo",
231 "+HEAD:refs/heads/master"
232 ],
233 "cwd": "[CWD]/infra",
234 "name": "git push (2)"
235 },
236 {
237 "name": "$result", 120 "name": "$result",
238 "recipe_result": null, 121 "recipe_result": null,
239 "status_code": 0 122 "status_code": 0
240 } 123 }
241 ] 124 ]
OLDNEW
« no previous file with comments | « scripts/slave/recipes/infra/sync_submodules.py ('k') | scripts/slave/recipes/sync_submodules.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698