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

Side by Side Diff: scripts/slave/recipes/webrtc/ios.expected/no_tests.json

Issue 2133483002: Fix configuration of goma in iOS recipes. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: improve wording in comment Created 4 years, 5 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 "RECIPE_PACKAGE_REPO[build]/scripts/slave/ios/host_info.py", 4 "RECIPE_PACKAGE_REPO[build]/scripts/slave/ios/host_info.py",
5 "--json-file", 5 "--json-file",
6 "/path/to/tmp/json" 6 "/path/to/tmp/json"
7 ], 7 ],
8 "name": "host and tools info", 8 "name": "host and tools info",
9 "~followup_annotations": [ 9 "~followup_annotations": [
10 "@@@STEP_TEXT@<br />OS X 1.2.3, Xcode 6.7.8 (5D342509a)@@@", 10 "@@@STEP_TEXT@<br />OS X 1.2.3, Xcode 6.7.8 (5D342509a)@@@",
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 "--version", 99 "--version",
100 "fake xcode version" 100 "fake xcode version"
101 ], 101 ],
102 "name": "find xcode", 102 "name": "find xcode",
103 "~followup_annotations": [ 103 "~followup_annotations": [
104 "@@@STEP_LOG_LINE@json.output@{}@@@", 104 "@@@STEP_LOG_LINE@json.output@{}@@@",
105 "@@@STEP_LOG_END@json.output@@@" 105 "@@@STEP_LOG_END@json.output@@@"
106 ] 106 ]
107 }, 107 },
108 { 108 {
109 "cmd": [],
110 "name": "ensure_goma"
111 },
112 {
113 "cmd": [
114 "python",
115 "-u",
116 "RECIPE_MODULE[build::cipd]/resources/bootstrap.py",
117 "--platform",
118 "mac-amd64",
119 "--dest-directory",
120 "[SLAVE_BUILD]/cipd",
121 "--json-output",
122 "/path/to/tmp/json"
123 ],
124 "name": "ensure_goma.install cipd",
125 "~followup_annotations": [
126 "@@@STEP_NEST_LEVEL@1@@@",
127 "@@@STEP_TEXT@cipd instance_id: 40-chars-fake-of-the-package-instance_id@@ @",
128 "@@@STEP_LOG_LINE@json.output@{@@@",
129 "@@@STEP_LOG_LINE@json.output@ \"executable\": \"[SLAVE_BUILD]/cipd/cipd\ ", @@@",
130 "@@@STEP_LOG_LINE@json.output@ \"instance_id\": \"40-chars-fake-of-the-pa ckage-instance_id\"@@@",
131 "@@@STEP_LOG_LINE@json.output@}@@@",
132 "@@@STEP_LOG_END@json.output@@@"
133 ]
134 },
135 {
136 "cmd": [
137 "[SLAVE_BUILD]/cipd/cipd",
138 "ensure",
139 "--root",
140 "[CACHE]/cipd/goma",
141 "--list",
142 "infra_internal/goma/client/mac-amd64 release",
143 "--json-output",
144 "/path/to/tmp/json",
145 "--service-account-json",
146 "/creds/service_accounts/service-account-goma-client.json"
147 ],
148 "name": "ensure_goma.ensure_installed",
149 "~followup_annotations": [
150 "@@@STEP_NEST_LEVEL@1@@@",
151 "@@@STEP_LOG_LINE@json.output@{@@@",
152 "@@@STEP_LOG_LINE@json.output@ \"result\": [@@@",
153 "@@@STEP_LOG_LINE@json.output@ {@@@",
154 "@@@STEP_LOG_LINE@json.output@ \"instance_id\": \"resolved-instance_i d-of-release---------\", @@@",
155 "@@@STEP_LOG_LINE@json.output@ \"package\": \"infra_internal/goma/cli ent/mac-amd64\"@@@",
156 "@@@STEP_LOG_LINE@json.output@ }@@@",
157 "@@@STEP_LOG_LINE@json.output@ ]@@@",
158 "@@@STEP_LOG_LINE@json.output@}@@@",
159 "@@@STEP_LOG_END@json.output@@@"
160 ]
161 },
162 {
109 "cmd": [ 163 "cmd": [
110 "python", 164 "python",
111 "-u", 165 "-u",
112 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", 166 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py",
113 "runhooks" 167 "runhooks"
114 ], 168 ],
115 "cwd": "[SLAVE_BUILD]/src", 169 "cwd": "[SLAVE_BUILD]/src",
116 "env": { 170 "env": {
117 "GYP_CROSSCOMPILE": "1", 171 "GYP_CROSSCOMPILE": "1",
118 "GYP_DEFINES": "use_goma=1 fake gyp define 1=fake value 1 fake gyp define 2=fake value 2 component=static_library OS=ios", 172 "GYP_DEFINES": "use_goma=1 fake gyp define 1=fake value 1 fake gyp define 2=fake value 2 component=static_library OS=ios",
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 "[GOMA_CACHE]", 221 "[GOMA_CACHE]",
168 "--build-tool", 222 "--build-tool",
169 "ninja", 223 "ninja",
170 "--compiler", 224 "--compiler",
171 "goma-clang", 225 "goma-clang",
172 "--goma-jsonstatus", 226 "--goma-jsonstatus",
173 "/path/to/tmp/json", 227 "/path/to/tmp/json",
174 "--goma-service-account-json-file", 228 "--goma-service-account-json-file",
175 "/creds/service_accounts/service-account-goma-client.json", 229 "/creds/service_accounts/service-account-goma-client.json",
176 "--goma-dir", 230 "--goma-dir",
177 "[BUILD]/goma", 231 "[CACHE]/cipd/goma",
178 "--", 232 "--",
179 "All" 233 "All"
180 ], 234 ],
181 "cwd": "[SLAVE_BUILD]/src/out/Release-iphoneos", 235 "cwd": "[SLAVE_BUILD]/src/out/Release-iphoneos",
182 "env": { 236 "env": {
183 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json" 237 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json"
184 }, 238 },
185 "name": "compile", 239 "name": "compile",
186 "~followup_annotations": [ 240 "~followup_annotations": [
187 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@", 241 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@",
188 "@@@STEP_LOG_END@json.output (invalid)@@@" 242 "@@@STEP_LOG_END@json.output (invalid)@@@"
189 ] 243 ]
190 }, 244 },
191 { 245 {
192 "name": "$result", 246 "name": "$result",
193 "recipe_result": null, 247 "recipe_result": null,
194 "status_code": 0 248 "status_code": 0
195 } 249 }
196 ] 250 ]
OLDNEW
« no previous file with comments | « scripts/slave/recipes/webrtc/ios.expected/basic.json ('k') | scripts/slave/recipes/webrtc/ios.expected/trybot.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698