author | Shabe Razvi <shaber@symbian.org> |
Tue, 21 Sep 2010 16:22:39 +0100 | |
changeset 1233 | 85e3fec18491 |
parent 1229 | dd40521a5759 |
child 1236 | b69afcf5d763 |
permissions | -rw-r--r-- |
1219 | 1 |
<?xml version="1.0" encoding="UTF-8"?> |
2 |
<project name="SF-POSTBUILD" xmlns:hlm="http://www.nokia.com/helium"> |
|
3 |
<target name="sf-postbuild" depends="sf-build-roms"> |
|
4 |
<stopwatch name="sf-postbuild"/> |
|
5 |
<echo>[SF-POSTBUILD]</echo> |
|
6 |
||
7 |
<if><istrue value="${sf.relicense.exported.headers}"/> |
|
8 |
<then> |
|
9 |
<runtarget target="sf-run-sfl-licence-munging"/> |
|
10 |
</then> |
|
11 |
</if> |
|
12 |
||
13 |
<parallel> |
|
14 |
<!-- TAG SOURCE CODE --> |
|
15 |
<if> |
|
16 |
<istrue value="${sf.spec.tagafterbuild.enable}" /> |
|
17 |
<then> |
|
18 |
<echo message="Apply tag to the source code used in this build"/> |
|
19 |
<runtarget target="sf-tag-hg-code"/> |
|
20 |
</then> |
|
21 |
</if> |
|
22 |
||
23 |
<!-- Create MD5s --> |
|
24 |
<if> |
|
25 |
<istrue value="${sf.spec.md5.enable}"/> |
|
26 |
<then> |
|
27 |
<echo message="INFO Creating MD5s"/> |
|
28 |
<runtarget target="sf-run-evalid"/> |
|
29 |
</then> |
|
30 |
</if> |
|
31 |
||
32 |
<!-- Package up the binaries we built --> |
|
33 |
<if> |
|
34 |
<istrue value="${sf.spec.package.bin.enable}"/> |
|
35 |
<then> |
|
36 |
<stopwatch name="sf-postbuild packaging binaries"/> |
|
37 |
<echo message="INFO Packaging Binaries"/> |
|
38 |
<runtarget target="sf-package-binary"/> |
|
39 |
||
40 |
<echo message="INFO Validate Zip files"/> |
|
41 |
<runtarget target="sf-package-validate"/> |
|
42 |
<stopwatch name="sf-postbuild packaging binaries" action="elapsed"/> |
|
43 |
</then> |
|
44 |
</if> |
|
45 |
||
46 |
<!-- run build analysis tools --> |
|
47 |
<runtarget target="sf-run-analysis"/> |
|
48 |
||
49 |
<if> |
|
50 |
<istrue value="${sf.spec.publish.enable}"/> |
|
51 |
<then> |
|
52 |
<!-- Generate reports to compare this build to a previous one --> |
|
53 |
<runtarget target="sf-compare-to-baseline"/> |
|
54 |
</then> |
|
55 |
</if> |
|
56 |
</parallel> |
|
57 |
||
58 |
<!-- Generate release_metadata entries for the md5 zips --> |
|
59 |
<antcall target="sf-zip-content"> |
|
60 |
<param name="zip.config.file" value="${temp.build.dir}/zip.cfg.xml.ftl"/> |
|
61 |
<param name="zip.target.name" value="md5-just-metadata" /> |
|
62 |
</antcall> |
|
63 |
||
64 |
<!-- Launch smoketest --> |
|
65 |
<if><istrue value="${sf.spec.test.sendpkg.enable}"/> |
|
66 |
<then> |
|
67 |
<runtarget target="sf-build-smoketestpkg"/> |
|
68 |
<runtarget target="sf-send-testpkg"/> |
|
69 |
</then> |
|
70 |
</if> |
|
71 |
||
72 |
<!-- Launch BC check --> |
|
73 |
<if><istrue value="${sf.spec.bccheck.enable}"/> |
|
74 |
<then> |
|
75 |
<runtarget target="sf-bc-check"/> |
|
76 |
</then> |
|
77 |
</if> |
|
78 |
||
79 |
<!-- Launch package tests --> |
|
80 |
<if><istrue value="${sf.spec.package.test.enable}"/> |
|
81 |
<then> |
|
82 |
<runtarget target="sf-test-package"/> |
|
83 |
</then> |
|
84 |
</if> |
|
85 |
||
86 |
<!-- copy log files linked to the generation of roms for REE --> |
|
87 |
<runtarget target="sf-copy-rom-logs"/> |
|
88 |
||
89 |
<runtarget target="sf-merge-brag"/> |
|
90 |
||
91 |
<!-- Zip up all the logs --> |
|
92 |
<runtarget target="sf-zip-logs"/> |
|
93 |
||
94 |
<if> |
|
95 |
<istrue value="${sf.spec.publish.enable}" /> |
|
96 |
<then> |
|
97 |
<echo message="Send links to Diamonds"/> |
|
98 |
<runtarget target="sf-links-to-diamonds"/> |
|
99 |
<echo message="Send BRAG status information to Diamonds"/> |
|
100 |
<runtarget target="sf-brag-to-diamonds"/> |
|
101 |
||
102 |
<echo message="Publish log files and reports to ${sf.spec.publish.rootdir}"/> |
|
103 |
<runtarget target="sf-publish"/> |
|
104 |
</then> |
|
105 |
</if> |
|
106 |
<stopwatch name="sf-postbuild" action="elapsed"/> |
|
107 |
</target> |
|
108 |
||
109 |
<target name="sf-tag-hg-code"> |
|
110 |
<!-- To do the tagging, we need to know what tag to use, and who the author is (from hg's perspective) --> |
|
111 |
<fail message="This target needs to have all the details specified, or to be run interactively so it can query the user"> |
|
112 |
<condition> |
|
113 |
<and> |
|
114 |
<isset property="sf.hudson.executor.number"/> |
|
115 |
<not> |
|
116 |
<or> |
|
117 |
<isset property="sf.tagafterbuild.tag"/> |
|
118 |
<isset property="sf.hg.ui.username"/> |
|
119 |
</or> |
|
120 |
</not> |
|
121 |
</and> |
|
122 |
</condition> |
|
123 |
</fail> |
|
124 |
||
125 |
<!-- Ask the user, interactively, what tag to use --> |
|
126 |
<input addproperty="sf.tagafterbuild.tag" message="Enter the tag to apply to the code (eg "PDK_1.0.1"):"/> |
|
127 |
<fail message="No tag supplied"> |
|
128 |
<condition> |
|
129 |
<length string="${sf.tagafterbuild.tag}" trim="true" length="0"/> |
|
130 |
</condition> |
|
131 |
</fail> |
|
132 |
||
133 |
<!-- Now get the username sorted out --> |
|
134 |
<exec executable="hg" outputproperty="sf.hg.showconfig.ui.username"> |
|
135 |
<arg value="showconfig"/> |
|
136 |
<arg value="ui.username"/> |
|
137 |
</exec> |
|
138 |
<input addproperty="sf.hg.ui.username" message="Enter hg author credentials (eg "Fred Bloggs <fredb@example.org>") default is" defaultvalue="${sf.hg.showconfig.ui.username}"/> |
|
139 |
<fail message="No author supplied"> |
|
140 |
<condition> |
|
141 |
<length string="${sf.hg.ui.username}" trim="true" length="0"/> |
|
142 |
</condition> |
|
143 |
</fail> |
|
144 |
||
145 |
<fmpp sourceFile="${sf.common.config.dir}/templates/tag-hg-code.ant.xml.ftl" |
|
146 |
outputFile="${temp.build.dir}/tag-hg-code.ant.xml"> |
|
147 |
<data expandProperties="yes"> |
|
148 |
ant: antProperties() |
|
149 |
data: csv(${sf.spec.sourcesync.sourcespecdir}/${sf.spec.sourcesync.sourcespecfile}, {separator:','}) |
|
150 |
</data> |
|
151 |
</fmpp> |
|
152 |
<ant antfile="${temp.build.dir}/tag-hg-code.ant.xml"/> |
|
153 |
</target> |
|
154 |
||
155 |
<target name="sf-push-hg-tags"> |
|
156 |
<!-- To do the pushing, we need to have a set of credentials for the developer.symbian.org site --> |
|
157 |
<fail message="This target needs to have loging credentials specified specified, or to be run interactively so it can query the user"> |
|
158 |
<condition> |
|
159 |
<and> |
|
160 |
<isset property="sf.hudson.executor.number"/> |
|
161 |
<not> |
|
162 |
<or> |
|
163 |
<isset property="sf.symbian.account.username"/> |
|
164 |
<isset property="sf.symbian.account.password"/> |
|
165 |
</or> |
|
166 |
</not> |
|
167 |
</and> |
|
168 |
</condition> |
|
169 |
</fail> |
|
170 |
||
171 |
<input addproperty="sf.symbian.account.username" message="Enter symbian.org username (eg "fredb")"/> |
|
172 |
<fail message="No author supplied"> |
|
173 |
<condition> |
|
174 |
<length string="${sf.hg.ui.username}" trim="true" length="0"/> |
|
175 |
</condition> |
|
176 |
</fail> |
|
177 |
||
178 |
<input addproperty="sf.symbian.account.password" message="Enter symbian.org password (eg "unguessable")"> |
|
179 |
<!-- Ant 1.8 supports secure here, which would be an improvement... --> |
|
180 |
<handler type="default"/> |
|
181 |
</input> |
|
182 |
<fail message="No password supplied"> |
|
183 |
<condition> |
|
184 |
<length string="${sf.hg.ui.password}" trim="true" length="0"/> |
|
185 |
</condition> |
|
186 |
</fail> |
|
187 |
||
188 |
<if> |
|
189 |
<not> |
|
190 |
<available file="${build.drive}/tagging" type="dir"/> |
|
191 |
</not> |
|
192 |
<then> |
|
193 |
<!-- No dir with tagged repos in - create them! --> |
|
194 |
<runtarget target="sf-tag-hg-code"/> |
|
195 |
</then> |
|
196 |
</if> |
|
197 |
||
198 |
<fmpp sourceFile="${sf.common.config.dir}/templates/push-hg-tags.ant.xml.ftl" |
|
199 |
outputFile="${temp.build.dir}/push-hg-tags.ant.xml"> |
|
200 |
<data expandProperties="yes"> |
|
201 |
ant: antProperties() |
|
202 |
data: csv(${sf.spec.sourcesync.sourcespecdir}/${sf.spec.sourcesync.sourcespecfile}, {separator:','}) |
|
203 |
</data> |
|
204 |
</fmpp> |
|
205 |
<ant antfile="${temp.build.dir}/push-hg-tags.ant.xml"/> |
|
206 |
</target> |
|
207 |
||
208 |
<target name="sf-run-evalid" > |
|
209 |
<delete dir="${build.drive}/output/md5"/> |
|
210 |
<mkdir dir="${build.drive}/output/md5"/> |
|
211 |
||
212 |
<parallel> |
|
213 |
<exec executable="cmd" dir="${build.drive}/"> |
|
214 |
<arg value="/c"/> |
|
215 |
<arg value="evalid -g epoc32/include output/md5/epoc32_include.md5"/> |
|
216 |
</exec> |
|
217 |
<exec executable="cmd" dir="${build.drive}/"> |
|
218 |
<arg value="/c"/> |
|
219 |
<arg value="evalid -g epoc32/s60 output/md5/epoc32_s60.md5"/> |
|
220 |
</exec> |
|
221 |
<exec executable="cmd" dir="${build.drive}/"> |
|
222 |
<arg value="/c"/> |
|
223 |
<arg value="evalid -g epoc32/localisation output/md5/epoc32_localisation.md5"/> |
|
224 |
</exec> |
|
225 |
<exec executable="cmd" dir="${build.drive}/"> |
|
226 |
<arg value="/c"/> |
|
227 |
<arg value="evalid -x \.sym$ -x ^armv5/udeb -x ^armv5/urel -x ^winscw/udeb -x ^winscw/urel -g epoc32/release output/md5/epoc32_release.md5"/> |
|
228 |
</exec> |
|
229 |
<exec executable="cmd" dir="${build.drive}/"> |
|
230 |
<arg value="/c"/> |
|
231 |
<arg value="evalid -x \.sym$ -g epoc32/release/armv5/udeb output/md5/epoc32_release_armv5_udeb.md5"/> |
|
232 |
</exec> |
|
233 |
<exec executable="cmd" dir="${build.drive}/"> |
|
234 |
<arg value="/c"/> |
|
235 |
<arg value="evalid -x \.sym$ -g epoc32/release/armv5/urel output/md5/epoc32_release_armv5_urel.md5"/> |
|
236 |
</exec> |
|
237 |
<exec executable="cmd" dir="${build.drive}/"> |
|
238 |
<arg value="/c"/> |
|
239 |
<arg value="evalid -x \.sym$ -g epoc32/release/winscw/udeb output/md5/epoc32_release_winscw_udeb.md5"/> |
|
240 |
</exec> |
|
241 |
<exec executable="cmd" dir="${build.drive}/"> |
|
242 |
<arg value="/c"/> |
|
243 |
<arg value="evalid -x \.sym$ -g epoc32/release/winscw/urel output/md5/epoc32_release_winscw_urel.md5"/> |
|
244 |
</exec> |
|
245 |
<exec executable="cmd" dir="${build.drive}/"> |
|
246 |
<arg value="/c"/> |
|
247 |
<arg value="evalid -g epoc32/cshlpcmp_template output/md5/epoc32_cshlpcmp_template.md5"/> |
|
248 |
</exec> |
|
249 |
<exec executable="cmd" dir="${build.drive}/"> |
|
250 |
<arg value="/c"/> |
|
251 |
<arg value="evalid -g epoc32/data output/md5/epoc32_data.md5"/> |
|
252 |
</exec> |
|
253 |
<exec executable="cmd" dir="${build.drive}/"> |
|
254 |
<arg value="/c"/> |
|
255 |
<arg value="evalid -g epoc32/engdoc output/md5/epoc32_engdoc.md5"/> |
|
256 |
</exec> |
|
257 |
<exec executable="cmd" dir="${build.drive}/"> |
|
258 |
<arg value="/c"/> |
|
259 |
<arg value="evalid -g epoc32/engineeringtools output/md5/epoc32_engineeringtools.md5"/> |
|
260 |
</exec> |
|
261 |
<exec executable="cmd" dir="${build.drive}/"> |
|
262 |
<arg value="/c"/> |
|
263 |
<arg value="evalid -g epoc32/gcc output/md5/epoc32_gcc.md5"/> |
|
264 |
</exec> |
|
265 |
<exec executable="cmd" dir="${build.drive}/"> |
|
266 |
<arg value="/c"/> |
|
267 |
<arg value="evalid -g epoc32/gcc_mingw output/md5/epoc32_gcc_mingw.md5"/> |
|
268 |
</exec> |
|
269 |
<exec executable="cmd" dir="${build.drive}/"> |
|
270 |
<arg value="/c"/> |
|
271 |
<arg value="evalid -g epoc32/ksa output/md5/epoc32_ksa.md5"/> |
|
272 |
</exec> |
|
273 |
<exec executable="cmd" dir="${build.drive}/"> |
|
274 |
<arg value="/c"/> |
|
275 |
<arg value="evalid -g epoc32/rom output/md5/epoc32_rom.md5"/> |
|
276 |
</exec> |
|
277 |
<exec executable="cmd" dir="${build.drive}/"> |
|
278 |
<arg value="/c"/> |
|
279 |
<arg value="evalid -g epoc32/rombuild output/md5/epoc32_rombuild.md5"/> |
|
280 |
</exec> |
|
281 |
<exec executable="cmd" dir="${build.drive}/"> |
|
282 |
<arg value="/c"/> |
|
283 |
<arg value="evalid -g epoc32/sbs_config output/md5/epoc32_sbs_config.md5"/> |
|
284 |
</exec> |
|
285 |
<exec executable="cmd" dir="${build.drive}/"> |
|
286 |
<arg value="/c"/> |
|
287 |
<arg value="evalid -g epoc32/sdk_special output/md5/epoc32_sdk_special.md5"/> |
|
288 |
</exec> |
|
289 |
<exec executable="cmd" dir="${build.drive}/"> |
|
290 |
<arg value="/c"/> |
|
291 |
<arg value="evalid -g epoc32/stdapis output/md5/epoc32_stdapis.md5"/> |
|
292 |
</exec> |
|
293 |
<exec executable="cmd" dir="${build.drive}/"> |
|
294 |
<arg value="/c"/> |
|
295 |
<arg value="evalid -g epoc32/stubs output/md5/epoc32_stubs.md5"/> |
|
296 |
</exec> |
|
297 |
<exec executable="cmd" dir="${build.drive}/"> |
|
298 |
<arg value="/c"/> |
|
299 |
<arg value="evalid -g epoc32/tools output/md5/epoc32_tools.md5"/> |
|
300 |
</exec> |
|
301 |
<exec executable="cmd" dir="${build.drive}/"> |
|
302 |
<arg value="/c"/> |
|
303 |
<arg value="evalid -g epoc32/wins output/md5/epoc32_wins.md5"/> |
|
304 |
</exec> |
|
305 |
<exec executable="cmd" dir="${build.drive}/"> |
|
306 |
<arg value="/c"/> |
|
307 |
<arg value="evalid -g epoc32/winscw output/md5/epoc32_winscw.md5"/> |
|
308 |
</exec> |
|
309 |
</parallel> |
|
310 |
<!-- package MD5s directly into epoc32/relinfo location so that its usable out-of-the-box --> |
|
311 |
<mkdir dir="${build.output.dir}/zips/release"/> <!-- Hack to prevent non-existing release dir --> |
|
312 |
<zip destfile="${build.output.dir}/zips/release/build_md5.zip"> |
|
313 |
<zipfileset dir="${build.drive}/output/md5/" prefix="epoc32/relinfo"/> |
|
314 |
</zip> |
|
315 |
</target> |
|
316 |
||
317 |
<target name="sf-package-binary" depends="sf-package-postbuild-rnd,sf-merge-manifest"> |
|
318 |
<!-- Warning: Reverting to using the He zipper will also revert to a single zip for the binaries: |
|
319 |
would need to update the template and possibly the script that populates it --> |
|
320 |
<!--antcall target="sf-zip-content"> |
|
321 |
<param name="zip.config.file" value="${temp.build.dir}/zip.cfg.xml.ftl"/> |
|
322 |
<param name="zip.target.name" value="bin" /> |
|
323 |
</antcall--> |
|
324 |
<parallel> |
|
325 |
<sequential> |
|
326 |
<if> |
|
327 |
<isset property="sf.sdk.header.list.file"/> |
|
328 |
<then> |
|
329 |
<property name="sf.epoc32.exclusions.file" value="${sf.sdk.header.list.file}"/> |
|
330 |
</then> |
|
331 |
</if> |
|
332 |
<property name="sf.epoc32.exclusions.file" value="nul:"/> |
|
333 |
<exec executable="7za" dir="${build.drive}/" output="${build.log.dir}/zip_${build.id}_binaries_epoc32.log"> |
|
334 |
<arg value="a"/> |
|
335 |
<arg value="-t${sf.spec.package.zip.format}"/> |
|
336 |
<arg value="-x@${build.log.dir}/rnd_excludefile.txt"/> <!-- rnd content taken from internal hg repos --> |
|
337 |
<arg value="-x@${sf.spec.prebuilt.excludelist}"/> |
|
338 |
<arg value="-x@output/temp_build_files/manifest_excludelist.txt"/> <!-- merged list of prebuilt content such as binaries_prebuilt --> |
|
339 |
<arg value="-x@${sf.epoc32.exclusions.file}"/> |
|
340 |
<arg value="-x!epoc32\gcc"/> |
|
341 |
<arg value="-x!epoc32\gcc_mingw"/> |
|
342 |
<arg value="-x!epoc32\tools"/> |
|
343 |
<arg value="-x!epoc32\data\buildinfo.txt"/> |
|
344 |
<!-- Feature database artifacts released as part of the tools zip --> |
|
345 |
<arg value="-x!epoc32\data\config\features.dat"/> |
|
346 |
<arg value="-x!epoc32\include\featureuids.h"/> |
|
347 |
<arg value="-x!epoc32\rom\include\feature.iby"/> |
|
348 |
<arg value="-x!epoc32\rom\include\featuredatabase.xml"/> |
|
349 |
<arg value="-x!epoc32\data\media"/> <!-- Files created when emulator is used to create comms database - not worth releasing--> |
|
350 |
<arg value="-x!epoc32\build"/> |
|
351 |
<arg value="-x!epoc32\release\armv5"/> |
|
352 |
<arg value="-x!epoc32\release\winscw"/> |
|
353 |
<arg value="-xr!*.sym"/> |
|
354 |
<arg value="${build.drive}/output/zips/release/binaries_epoc.zip"/> |
|
355 |
<arg value="epoc32\"/> |
|
356 |
</exec> |
|
357 |
</sequential> |
|
358 |
||
359 |
<if> |
|
360 |
<isset property="sf.sdk.header.list.file"/> |
|
361 |
<then> |
|
362 |
<exec executable="7za" dir="${build.drive}/" output="${build.log.dir}/zip_${build.id}_binaries_sdk.log"> |
|
363 |
<arg value="a"/> |
|
364 |
<arg value="-t${sf.spec.package.zip.format}"/> |
|
365 |
<arg value="-i@${sf.sdk.header.list.file}"/> |
|
366 |
<arg value="-x@${build.log.dir}/rnd_excludefile.txt"/> |
|
367 |
<arg value="-x@output/temp_build_files/manifest_excludelist.txt"/> |
|
368 |
<arg value="-x@${sf.spec.prebuilt.excludelist}"/> |
|
369 |
<arg value="-x!epoc32/include/featureuids.h"/> <!-- This needs to come from the tools zip instead --> |
|
370 |
<arg value="${build.drive}/output/zips/release/binaries_epoc_sdk.zip"/> |
|
371 |
</exec> |
|
372 |
<!-- Check that all the files we want in the SDK are zipped --> |
|
373 |
<antcall target="sf-log-to-brag"> |
|
374 |
<param name="sf.brag.id" value="SDK"/> |
|
375 |
<param name="sf.brag.log" value="${build.log.dir}/zip_${build.id}_binaries_sdk.log"/> |
|
376 |
<param name="sf.brag.phase" value="Postbuild"/> |
|
377 |
<param name="sf.brag.step" value="Package SDK"/> |
|
378 |
</antcall> |
|
379 |
<!-- Generate release_metadata entries for the SDK zip --> |
|
380 |
<antcall target="sf-zip-content"> |
|
381 |
<param name="zip.config.file" value="${temp.build.dir}/zip.cfg.xml.ftl"/> |
|
382 |
<param name="zip.target.name" value="bin-sdk-just-metadata" /> |
|
383 |
</antcall> |
|
384 |
</then> |
|
385 |
</if> |
|
386 |
||
387 |
<!-- WinsCW binaries, by udeb/urel/lib --> |
|
388 |
<exec executable="7za" dir="${build.drive}/" output="${build.log.dir}/zip_${build.id}_binaries_winscw_udeb.log"> |
|
389 |
<arg value="a"/> |
|
390 |
<arg value="-t${sf.spec.package.zip.format}"/> |
|
391 |
<arg value="-x@${build.log.dir}/rnd_excludefile.txt"/> |
|
392 |
<arg value="-x@output/temp_build_files/manifest_excludelist.txt"/> |
|
393 |
<arg value="-x@${sf.spec.prebuilt.excludelist}"/> |
|
394 |
<arg value="-xr!*.sym"/> |
|
395 |
<arg value="-xr!*.lib"/> |
|
396 |
<arg value="${build.drive}/output/zips/release/binaries_winscw_udeb.zip"/> |
|
397 |
<arg value="epoc32\release\winscw\udeb"/> |
|
398 |
</exec> |
|
399 |
<exec executable="7za" dir="${build.drive}/" output="${build.log.dir}/zip_${build.id}_binaries_winscw_urel.log"> |
|
400 |
<arg value="a"/> |
|
401 |
<arg value="-t${sf.spec.package.zip.format}"/> |
|
402 |
<arg value="-x@${build.log.dir}/rnd_excludefile.txt"/> |
|
403 |
<arg value="-x@output/temp_build_files/manifest_excludelist.txt"/> |
|
404 |
<arg value="-x@${sf.spec.prebuilt.excludelist}"/> |
|
405 |
<arg value="-xr!*.sym"/> |
|
406 |
<arg value="-xr!*.lib"/> |
|
407 |
<arg value="${build.drive}/output/zips/release/binaries_winscw_urel.zip"/> |
|
408 |
<arg value="epoc32\release\winscw\urel"/> |
|
409 |
</exec> |
|
410 |
<exec executable="7za" dir="${build.drive}/" output="${build.log.dir}/zip_${build.id}_binaries_winscw_lib.log"> |
|
411 |
<arg value="a"/> |
|
412 |
<arg value="-t${sf.spec.package.zip.format}"/> |
|
413 |
<arg value="-ir!epoc32/release/winscw/*.lib"/> |
|
414 |
<arg value="-x@${build.log.dir}/rnd_excludefile.txt"/> |
|
415 |
<arg value="-x@output/temp_build_files/manifest_excludelist.txt"/> |
|
416 |
<arg value="-x@${sf.spec.prebuilt.excludelist}"/> |
|
417 |
<arg value="${build.drive}/output/zips/release/binaries_winscw_lib.zip"/> |
|
418 |
</exec> |
|
419 |
||
420 |
<!-- ARMv5 binaries, by udeb/urel/lib --> |
|
421 |
<exec executable="7za" dir="${build.drive}/" output="${build.log.dir}/zip_${build.id}_binaries_armv5_udeb.log"> |
|
422 |
<arg value="a"/> |
|
423 |
<arg value="-t${sf.spec.package.zip.format}"/> |
|
424 |
<arg value="-x@${build.log.dir}/rnd_excludefile.txt"/> |
|
425 |
<arg value="-x@output/temp_build_files/manifest_excludelist.txt"/> |
|
426 |
<arg value="-x@${sf.spec.prebuilt.excludelist}"/> |
|
427 |
<arg value="-xr!*.sym"/> |
|
428 |
<arg value="${build.drive}/output/zips/release/binaries_armv5_udeb.zip"/> |
|
429 |
<arg value="epoc32\release\armv5\udeb"/> |
|
430 |
</exec> |
|
431 |
<exec executable="7za" dir="${build.drive}/" output="${build.log.dir}/zip_${build.id}_binaries_armv5_urel.log"> |
|
432 |
<arg value="a"/> |
|
433 |
<arg value="-t${sf.spec.package.zip.format}"/> |
|
434 |
<arg value="-x@${build.log.dir}/rnd_excludefile.txt"/> |
|
435 |
<arg value="-x@output/temp_build_files/manifest_excludelist.txt"/> |
|
436 |
<arg value="-x@${sf.spec.prebuilt.excludelist}"/> |
|
437 |
<arg value="-xr!*.sym"/> |
|
438 |
<arg value="${build.drive}/output/zips/release/binaries_armv5_urel.zip"/> |
|
439 |
<arg value="epoc32\release\armv5\urel"/> |
|
440 |
</exec> |
|
441 |
<exec executable="7za" dir="${build.drive}/" output="${build.log.dir}/zip_${build.id}_binaries_armv5_lib.log"> |
|
442 |
<arg value="a"/> |
|
443 |
<arg value="-t${sf.spec.package.zip.format}"/> |
|
444 |
<arg value="-x@${build.log.dir}/rnd_excludefile.txt"/> |
|
445 |
<arg value="-x@output/temp_build_files/manifest_excludelist.txt"/> |
|
446 |
<arg value="-x@${sf.spec.prebuilt.excludelist}"/> |
|
447 |
<arg value="-xr!*.sym"/> |
|
448 |
<arg value="-ir!epoc32/release/armv5/_*.bin"/> <!-- include bootloaders in common lib zipfile --> |
|
449 |
<arg value="${build.drive}/output/zips/release/binaries_armv5_lib.zip"/> |
|
450 |
<arg value="epoc32\release\armv5\lib"/> |
|
451 |
</exec> |
|
452 |
</parallel> |
|
453 |
||
454 |
<runtarget target="sf-package-tools"/> |
|
455 |
<runtarget target="sf-package-prebuilt"/> |
|
456 |
||
457 |
<!-- Generate release_metadata entries for the above zips --> |
|
458 |
<antcall target="sf-zip-content"> |
|
459 |
<param name="zip.config.file" value="${temp.build.dir}/zip.cfg.xml.ftl"/> |
|
460 |
<param name="zip.target.name" value="bin-just-metadata" /> |
|
461 |
</antcall> |
|
462 |
</target> |
|
463 |
||
464 |
<target name="sf-package-postbuild-rnd" > |
|
465 |
<antcall target="sf-zip-content"> |
|
466 |
<param name="zip.config.file" value="${temp.build.dir}/zip.cfg.xml.ftl"/> |
|
467 |
<param name="zip.target.name" value="rnd-postbuild" /> |
|
468 |
</antcall> |
|
469 |
</target> |
|
470 |
||
471 |
<target name="sf-package-tools" depends="sf-merge-manifest"> |
|
472 |
<exec executable="7za" dir="${build.drive}/" output="${build.log.dir}/zip_${build.id}_tools_epoc32.log"> |
|
473 |
<arg value="a"/> |
|
474 |
<arg value="-t${sf.spec.package.zip.format}"/> |
|
475 |
<arg value="-x@${build.log.dir}/rnd_excludefile.txt"/> |
|
476 |
<arg value="-x@/output/temp_build_files/manifest_excludelist.txt"/> |
|
477 |
<arg value="-x@${sf.spec.prebuilt.excludelist}"/> |
|
478 |
<arg value="${build.drive}/output/zips/release/tools_epoc.zip"/> |
|
479 |
<arg value="epoc32/tools"/> |
|
480 |
<arg value="epoc32/gcc"/> |
|
481 |
<arg value="epoc32/gcc_mingw"/> |
|
482 |
<arg value="epoc32/data/buildinfo.txt"/> |
|
483 |
<arg value="epoc32/data/config/features.dat"/> |
|
484 |
<arg value="epoc32/include/featureuids.h"/> |
|
485 |
<arg value="epoc32/rom/include/feature.iby"/> |
|
486 |
<arg value="epoc32/rom/include/featuredatabase.xml"/> |
|
487 |
</exec> |
|
488 |
<antcall target="sf-zip-content"> |
|
489 |
<param name="zip.config.file" value="${temp.build.dir}/zip.cfg.xml.ftl"/> |
|
490 |
<param name="zip.target.name" value="tools" /> |
|
491 |
</antcall> |
|
492 |
</target> |
|
493 |
||
494 |
<target name="sf-package-validate"> |
|
495 |
<exec executable="7z" dir="${build.drive}/output/zips" failonerror="false" output="${build.drive}/output/zips/validate.log"> |
|
496 |
<arg value="t"/> |
|
497 |
<arg value="*.zip"/> |
|
498 |
</exec> |
|
499 |
<exec executable="7z" dir="${build.drive}/output/zips/release" failonerror="false" output="${build.drive}/output/zips/release/validate.log"> |
|
500 |
<arg value="t"/> |
|
501 |
<arg value="*.zip"/> |
|
502 |
</exec> |
|
503 |
</target> |
|
504 |
||
505 |
<!-- merge manifests for prebuilt stuff delivered at the start of build process --> |
|
506 |
<target name="sf-merge-manifest"> |
|
507 |
<echo message="INFO Build drive is ${build.drive} "/> |
|
508 |
<concat destfile="${build.drive}\output\temp_build_files\manifest_excludelist.txt"> |
|
509 |
<fileset dir="${build.drive}" includes="*manifest*" excludes="manifest_excludelist.txt"/> |
|
510 |
</concat> |
|
511 |
||
512 |
<!-- touch file to update/create it in the event that there are no manifest* files available |
|
513 |
as 7z will not be happy being given a non-existent file --> |
|
514 |
<touch file="${build.drive}\output\temp_build_files\manifest_excludelist.txt"/> |
|
515 |
</target> |
|
516 |
||
517 |
<target name="sf-package-prebuilt" depends="sf-merge-manifest"> |
|
518 |
<!-- for each prebuilt manifest* file, repackage --> |
|
519 |
||
520 |
<for param="manifest"> |
|
521 |
<path> |
|
522 |
<fileset dir="${build.drive}\"> |
|
523 |
<include name="manifest*.txt"/> |
|
524 |
<exclude name="manifest*restricted*.txt"/> <!-- dont repack restricted content such as testconfigfileparser --> |
|
525 |
</fileset> |
|
526 |
</path> |
|
527 |
<!-- strip manifest_ and .txt extension for matched file --> |
|
528 |
<sequential> |
|
529 |
<propertyregex property="manifest.shortname" override="true" input="@{manifest}" regexp="manifest_(\S+)(.txt)" select="\1" global="true" casesensitive="false"/> |
|
530 |
<propertyregex property="manifest.fullname" override="true" input="@{manifest}" regexp="(.*)" select="\1" global="true" casesensitive="false"/> |
|
531 |
<propertyregex property="manifest.pkgname" override="true" input="@{manifest}" regexp="manifest_binaries_(\S+)(.txt)" select="\1" global="true" casesensitive="false"/> |
|
532 |
||
533 |
<echo message="INFO Packaging ${manifest.fullname} into ${manifest.shortname}.zip"/> |
|
534 |
||
535 |
<exec executable="7za" dir="${build.drive}/" output="${build.drive}/zip_${manifest.shortname}.log"> |
|
536 |
<arg value="a"/> |
|
537 |
<arg value="-t${sf.spec.package.zip.format}"/> |
|
538 |
<arg value="-i@${manifest.fullname}"/> |
|
539 |
<arg value="${build.drive}/output/zips/release/${manifest.shortname}.zip"/> |
|
540 |
</exec> |
|
541 |
||
542 |
<!-- merge release metadata --> |
|
543 |
<antcall target="sf-zip-content"> |
|
544 |
<param name="zip.config.file" value="${temp.build.dir}/zip.cfg.xml.ftl"/> |
|
545 |
<param name="zip.target.name" value="bin-${manifest.pkgname}-metadata" /> |
|
546 |
<param name="sf.spec.job.name" value="${manifest.pkgname}" /> |
|
547 |
</antcall> |
|
548 |
</sequential> |
|
549 |
</for> |
|
550 |
||
551 |
</target> |
|
552 |
<!-- runs analysis of missing bins and source --> |
|
553 |
<target name="sf-run-analysis"> |
|
554 |
<stopwatch name="sf-run-analysis"/> |
|
555 |
<mkdir dir="${build.log.dir}/analysis"/> |
|
556 |
<parallel> |
|
557 |
<runtarget target="sf-run-analysis-ant"/> |
|
1233
85e3fec18491
Remove duplicate analysis-ant call
Shabe Razvi <shaber@symbian.org>
parents:
1229
diff
changeset
|
558 |
|
1229
dd40521a5759
Make depends analysis tool conditional
Shabe Razvi <shaber@symbian.org>
parents:
1227
diff
changeset
|
559 |
<if><istrue value="${sf.spec.analysis.depends.enable}"/> |
dd40521a5759
Make depends analysis tool conditional
Shabe Razvi <shaber@symbian.org>
parents:
1227
diff
changeset
|
560 |
<then> |
dd40521a5759
Make depends analysis tool conditional
Shabe Razvi <shaber@symbian.org>
parents:
1227
diff
changeset
|
561 |
<runtarget target="sf-run-analysis-depends"/> |
dd40521a5759
Make depends analysis tool conditional
Shabe Razvi <shaber@symbian.org>
parents:
1227
diff
changeset
|
562 |
</then> |
dd40521a5759
Make depends analysis tool conditional
Shabe Razvi <shaber@symbian.org>
parents:
1227
diff
changeset
|
563 |
</if> |
dd40521a5759
Make depends analysis tool conditional
Shabe Razvi <shaber@symbian.org>
parents:
1227
diff
changeset
|
564 |
|
1219 | 565 |
<runtarget target="sf-run-analysis-raptor"/> |
566 |
<runtarget target="sf-run-analysis-yarp"/> |
|
567 |
<runtarget target="sf-run-analysis-whatlog-summary"/> |
|
568 |
<runtarget target="sf-run-analysis-missing-files"/> |
|
569 |
</parallel> |
|
570 |
<if> |
|
571 |
<istrue value="${sf.spec.publish.enable}"/> |
|
572 |
<then> |
|
573 |
<runtarget target="sf-run-analysis-diamonds"/> |
|
574 |
</then> |
|
575 |
</if> |
|
576 |
<stopwatch name="sf-run-analysis" action="elapsed"/> |
|
577 |
</target> |
|
578 |
||
579 |
<target name="sf-run-analysis-ant"> |
|
580 |
<echo message="Running source analysis of ANT output"/> |
|
581 |
<exec executable="perl" dir="${build.log.dir}" failonerror="false" output="${build.log.dir}/analysis/${build.id}_scan_ant.log"> |
|
582 |
<arg value="${sf.common.config.dir}/tools/analysis/scan_antlogs.pl"/> |
|
583 |
<arg value="*ant*"/> |
|
584 |
<arg value="*stderr*"/> <!-- helium 7 splits output into stderr logs, so use them also --> |
|
585 |
<arg value="*sbs_error*"/> |
|
586 |
</exec> |
|
587 |
</target> |
|
588 |
||
589 |
<target name="sf-run-analysis-raptor"> |
|
590 |
<!-- Cook the processed raptor logs to produce something in the right format for the BRAG system --> |
|
591 |
<mkdir dir="${build.log.dir}/summary/"/> |
|
592 |
<!-- exec executable="perl" output="${build.log.dir}/summary/sbs_BRAG.xml" logError="yes" failonerror="false"> |
|
593 |
<arg value="${sf.common.config.dir}/tools/brag/sbsToBRAG.pl"/> |
|
594 |
<arg value="${build.log.dir}/analysis/*_compile_preprocessed.log"/> |
|
595 |
</exec --> |
|
596 |
||
597 |
<echo message="Running UH parser on *_compile.log files"/> |
|
598 |
<apply executable="perl" dir="${build.drive}/utilities/uh_parser" failonerror="false" output="${build.log.dir}/analysis/${build.id}_raptorparse.log" parallel="true"> |
|
599 |
<arg value="uh.pl"/> |
|
600 |
<arg value="-m"/> |
|
601 |
<arg value="--basedir=${build.log.dir}"/> |
|
602 |
<fileset dir="${build.log.dir}"> |
|
603 |
<include name="*_compile.log"/> |
|
604 |
<include name="*_export.log"/> <!-- for explicit export step --> |
|
605 |
<exclude name="*build_check_compile.log"/> |
|
606 |
</fileset> |
|
607 |
</apply> |
|
608 |
||
609 |
<!-- Now iterate through the generated TSVs to sort them and remove duplicates --> |
|
610 |
<for param="tsv"> |
|
611 |
<path> |
|
612 |
<fileset dir="${build.log.dir}"> |
|
613 |
<include name="releaseables/**/*.tsv"/> |
|
614 |
</fileset> |
|
615 |
</path> |
|
616 |
<sequential> |
|
617 |
<exec executable="perl" input="@{tsv}" output="@{tsv}"> |
|
618 |
<arg value="${sf.common.config.dir}/tools/sortUnique.pl"/> |
|
619 |
</exec> |
|
620 |
</sequential> |
|
621 |
</for> |
|
622 |
||
623 |
<!-- Cook the raptor analysis further to produce something in the right format for the BRAG system --> |
|
624 |
<exec executable="perl" output="${build.log.dir}/summary/Uh_BRAG.xml" logError="yes"> |
|
625 |
<arg value="${sf.common.config.dir}/tools/brag/uh2brag.pl"/> |
|
626 |
<arg value="--index"/> |
|
627 |
<arg value="${build.log.dir}/html/index.html"/> |
|
628 |
</exec> |
|
629 |
<!-- And copy the XSL so the output can be transformed by a browser --> |
|
630 |
<copy file="${sf.common.config.dir}/tools/brag/brag.xsl" toDir="${build.log.dir}/summary/"/> |
|
631 |
</target> |
|
632 |
||
633 |
<target name="sf-run-analysis-yarp"> |
|
634 |
<echo message="Running yarp over *_compile.log files"/> |
|
635 |
<for param="logfile"> |
|
636 |
<path> |
|
637 |
<fileset dir="${build.log.dir}"> |
|
638 |
<include name="*_compile.log"/> |
|
639 |
<exclude name="*build_check_compile.log"/> |
|
640 |
</fileset> |
|
641 |
</path> |
|
642 |
<sequential> |
|
643 |
<propertyregex override="yes" property="yarpfile" input="@{logfile}" regexp=".*[\\|\/](.*)_compile\.log" replace="\1_yarp.csv"/> |
|
644 |
<propertyregex override="yes" property="yarpfile_short" input="${yarpfile}" regexp="[^_]*_[^_]*_[^_]*_(.+)_[^_]*_yarp\.csv" replace="YARP_\1"/> |
|
645 |
<echo message="Yarping @{logfile}..."/> |
|
646 |
<exec executable="perl" dir="${build.drive}" failonerror="false" output="${build.log.dir}/analysis/${yarpfile}.log" append="true"> |
|
647 |
<arg value="${sf.common.config.dir}/tools/analysis/yarp.pl"/> |
|
648 |
<arg value="@{logfile}"/> |
|
649 |
<arg value="${build.log.dir}/analysis/${yarpfile}"/> |
|
650 |
</exec> |
|
651 |
<exec executable="cmd" output="${build.drive}/output/logs/analysis/tmp_yarp_files.csv" append="true"> |
|
652 |
<arg value="/c"/> |
|
653 |
<arg value="echo"/> |
|
654 |
<arg value="${yarpfile_short},${sf.spec.publish.networkdrive}\${sf.spec.job.name}\builds\${sf.spec.job.codeline}\${build.id}\logs\analysis\${yarpfile},${build.drive}\output\logs\analysis\${yarpfile}"/> |
|
655 |
</exec> |
|
656 |
</sequential> |
|
657 |
</for> |
|
658 |
||
659 |
<!-- Cook the yarp analysis further to produce something in the right format for the BRAG system --> |
|
660 |
<mkdir dir="${build.log.dir}/summary/"/> |
|
661 |
<!-- exec executable="perl" output="${build.log.dir}/summary/Yarp_BRAG.xml" logError="yes"> |
|
662 |
<arg value="${sf.common.config.dir}/tools/brag/yarpToBRAG.pl"/> |
|
663 |
<arg value="${build.log.dir}/analysis/*_yarp.csv"/> |
|
664 |
</exec --> |
|
665 |
||
666 |
<exec executable="perl" dir="${build.drive}" failonerror="false" outputproperty="sf.job.totalyarperrors"> |
|
667 |
<arg value="${sf.common.config.dir}/tools/analysis/parse_yarp_files.pl"/> |
|
668 |
<arg value="${build.drive}/output/logs/analysis/tmp_yarp_files.csv"/> |
|
669 |
</exec> |
|
670 |
<echo message="Total yarp errors: ${sf.job.totalyarperrors}"/> |
|
671 |
</target> |
|
672 |
||
673 |
<target name="sf-run-analysis-whatlog-summary" > |
|
674 |
<sequential> |
|
675 |
<parallel> |
|
676 |
<runtarget target="sf-run-analysis-list"/> |
|
677 |
<runtarget target="sf-run-analysis-whatlog"/> |
|
678 |
</parallel> |
|
679 |
<runtarget target="sf-run-analysis-whatlog-merge" /> |
|
680 |
<parallel> |
|
681 |
<runtarget target="sf-run-analysis-whatlog-package"/> |
|
682 |
<runtarget target="sf-run-analysis-whatlog-collisons"/> |
|
683 |
</parallel> |
|
684 |
</sequential> |
|
685 |
</target> |
|
686 |
||
687 |
<target name="sf-run-analysis-list"> |
|
688 |
<echo message="Running list analysis"/> |
|
689 |
<exec executable="perl" dir="${build.log.dir}/analysis" failonerror="false" output="${build.log.dir}/analysis/${build.id}_list_results.log"> |
|
690 |
<arg value="${sf.common.config.dir}/tools/analysis/parselistdirs.pl"/> |
|
691 |
<arg value="..\"/> |
|
692 |
</exec> |
|
693 |
</target> |
|
694 |
||
695 |
<target name="sf-run-analysis-whatlog"> |
|
696 |
<echo message="Running whatlog analysis"/> |
|
697 |
<exec executable="perl" dir="${build.log.dir}/analysis" failonerror="false" output="${build.log.dir}/analysis/${build.id}_what_results.csv"> |
|
698 |
<arg value="${sf.common.config.dir}/tools/analysis/parsewhatlog.pl"/> |
|
699 |
<arg value="..\"/> |
|
700 |
</exec> |
|
701 |
</target> |
|
702 |
||
703 |
<target name="sf-run-analysis-whatlog-merge" > |
|
704 |
<echo message="Running summary analysis"/> |
|
705 |
<exec executable="perl" dir="${build.log.dir}/analysis" failonerror="false" output="${build.log.dir}/analysis/${build.id}_summary.log"> |
|
706 |
<arg value="${sf.common.config.dir}/tools/analysis/merge_csv.pl"/> |
|
707 |
<arg value="${build.id}_what_results.csv"/> |
|
708 |
<arg value="${build.id}_list_results.log"/> |
|
709 |
<arg value="${build.drive}/output/zips/release/binaries_epoc_additional.zip"/> |
|
710 |
</exec> |
|
711 |
</target> |
|
712 |
||
713 |
<target name="sf-run-analysis-whatlog-package" > |
|
714 |
<exec executable="perl" dir="${build.log.dir}/analysis" failonerror="false" output="${build.log.dir}/analysis/${build.id}_analysecomponents.log"> |
|
715 |
<arg value="${sf.common.config.dir}/tools/analysis/analyse_components.pl"/> |
|
716 |
<arg value="${sf.spec.sourcesync.sourcespecdir}/${sf.spec.sourcesync.sourcespecfile}"/> |
|
717 |
<arg value="${build.id}_what_results.csv_results.csv"/> |
|
718 |
<arg value="${sf.project.location}/sysdefs/system_model_os.xml"/> |
|
719 |
<arg value="${sf.project.location}/sysdefs/system_model_s60.xml"/> |
|
720 |
</exec> |
|
721 |
</target> |
|
722 |
||
723 |
<target name="sf-run-analysis-whatlog-collisons" > |
|
724 |
<echo message="Running collision analysis"/> |
|
725 |
<exec executable="perl" dir="${build.drive}" failonerror="false" output="${build.log.dir}/analysis/${build.id}_collisions.log"> |
|
726 |
<arg value="${sf.common.config.dir}/tools/analysis/find_collisions.pl"/> |
|
727 |
<arg value="${build.log.dir}/analysis/${build.id}_what_results.csv"/> |
|
728 |
</exec> |
|
729 |
</target> |
|
730 |
||
731 |
<target name="sf-run-analysis-diamonds"> |
|
732 |
<if> |
|
733 |
<istrue value="${sf.spec.publish.enable}"/> |
|
734 |
<then> |
|
735 |
<echo>[SF-RUN-ANALYSIS-DIAMONDS]</echo> |
|
736 |
<echo message="Translate \output\logs\html\index.html into a Diamonds file"/> |
|
737 |
<exec executable="perl" dir="${build.drive}"> |
|
738 |
<arg value="${sf.common.config.dir}/tools/uh2diamonds.pl"/> |
|
739 |
</exec> |
|
740 |
<echo message="Send ${build.log.dir}/diamonds_uh.xml to Diamonds"/> |
|
741 |
<exec executable="python"> |
|
742 |
<arg value="${sf.common.config.dir}/tools/brag/send_xml_to_diamonds.py"/> |
|
743 |
<arg value="-u"/> |
|
744 |
<arg value="http://${diamonds.host}${diamonds.build.id}"/> |
|
745 |
<arg value="-f"/> |
|
746 |
<arg value="${build.log.dir}/diamonds_uh.xml"/> |
|
747 |
</exec> |
|
748 |
</then> |
|
749 |
</if> |
|
750 |
</target> |
|
1227
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
751 |
|
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
752 |
<target name="sf-run-analysis-depends"> |
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
753 |
|
1229
dd40521a5759
Make depends analysis tool conditional
Shabe Razvi <shaber@symbian.org>
parents:
1227
diff
changeset
|
754 |
<for param="binary" parallel="true" threadCount="${env.NUMBER_OF_PROCESSORS}"> |
1233
85e3fec18491
Remove duplicate analysis-ant call
Shabe Razvi <shaber@symbian.org>
parents:
1229
diff
changeset
|
755 |
<fileset dir="${build.drive}/epoc32/release/winscw/udeb" casesensitive="false"> |
85e3fec18491
Remove duplicate analysis-ant call
Shabe Razvi <shaber@symbian.org>
parents:
1229
diff
changeset
|
756 |
<include name="*.dll"/> |
85e3fec18491
Remove duplicate analysis-ant call
Shabe Razvi <shaber@symbian.org>
parents:
1229
diff
changeset
|
757 |
<include name="*.exe"/> |
1227
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
758 |
</fileset> |
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
759 |
|
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
760 |
<sequential> |
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
761 |
|
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
762 |
<propertyregex property="binary.filename" override="true" input="@{binary}" regexp="\\([^\\]*)$" select="\1" casesensitive="false"/> |
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
763 |
<echo message="INFO Processing ${binary.filename}"/> |
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
764 |
|
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
765 |
<exec executable="cmd" dir="${sf.common.config.dir}/tools/analysis/" output="${temp.build.dir}/${binary.filename}.depends.out"> |
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
766 |
<arg value="/c"/> |
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
767 |
<arg value="perl"/> |
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
768 |
<arg value="depends.pl"/> |
1229
dd40521a5759
Make depends analysis tool conditional
Shabe Razvi <shaber@symbian.org>
parents:
1227
diff
changeset
|
769 |
<arg value="@{binary}"/> |
1227
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
770 |
</exec> |
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
771 |
|
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
772 |
</sequential> |
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
773 |
</for> |
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
774 |
|
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
775 |
<concat destfile="${build.log.dir}\analysis\${build.id}_depends.log"> |
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
776 |
<fileset dir="${temp.build.dir}" includes="*depends.out"/> |
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
777 |
</concat> |
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
778 |
|
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
779 |
</target> |
5f8149838262
Add dependency analysis tool, however dont switch on yet until v2.x of depends.exe tool is deployed.
Shabe Razvi <shaber@symbian.org>
parents:
1220
diff
changeset
|
780 |
|
1219 | 781 |
<target name="sf-links-to-diamonds"> |
782 |
<fmpp sourceFile="${sf.common.config.dir}/diamonds/linksForDiamonds.xml.ftl" outputFile="${build.log.dir}/linksForDiamonds.xml"> |
|
783 |
<data expandProperties="yes"> |
|
784 |
ant: antProperties() |
|
785 |
</data> |
|
786 |
</fmpp> |
|
787 |
<!-- Send the data to the server --> |
|
788 |
<exec executable="python"> |
|
789 |
<arg value="${sf.common.config.dir}/tools/brag/send_xml_to_diamonds.py"/> |
|
790 |
<arg value="-u"/> |
|
791 |
<arg value="http://${diamonds.host}${diamonds.build.id}"/> |
|
792 |
<arg value="-f"/> |
|
793 |
<arg value="${build.log.dir}/linksForDiamonds.xml"/> |
|
794 |
</exec> |
|
795 |
||
796 |
<echo message="report	Summary,http://cdn.symbian.org/SF_builds/${sf.spec.job.name}/builds/${sf.spec.job.codeline}/${build.id}/summary/_brag.xml,report${line.separator}" file="${build.log.dir}/bitinfo.txt" append="true"/> |
|
797 |
<echo message="report	Raptor Build Summary,http://cdn.symbian.org/SF_builds/${sf.spec.job.name}/builds/${sf.spec.job.codeline}/${build.id}/html/index.html,report${line.separator}" file="${build.log.dir}/bitinfo.txt" append="true"/> |
|
798 |
<echo message="report	Build BOM,http://cdn.symbian.org/SF_builds/${sf.spec.job.name}/builds/${sf.spec.job.codeline}/${build.id}/build_BOM.zip,file${line.separator}" file="${build.log.dir}/bitinfo.txt" append="true"/> |
|
799 |
<echo message="report	Build Logs,http://cdn.symbian.org/SF_builds/${sf.spec.job.name}/builds/${sf.spec.job.codeline}/${build.id}/build_logs.zip,file${line.separator}" file="${build.log.dir}/bitinfo.txt" append="true"/> |
|
800 |
<if><and><equals arg1="${sf.spec.smoketest.enable}" arg2="true"/><equals arg1="${sf.spec.ats.version}" arg2="ats3"/></and><then> |
|
801 |
<echo message="report	Smoke Test Report,http://cdn.symbian.org/SF_builds/${sf.spec.job.name}/builds/${sf.spec.job.codeline}/${build.id}/ats_reports/ATS3Report.html,report${line.separator}" file="${build.log.dir}/bitinfo.txt" append="true"/> |
|
802 |
</then></if> |
|
803 |
<if><and><equals arg1="${sf.spec.smoketest.enable}" arg2="true"/><equals arg1="${sf.spec.ats.version}" arg2="ats4"/></and><then> |
|
804 |
<echo message="report	Smoke Test Report,http://cdn.symbian.org/SF_builds/${sf.spec.job.name}/builds/${sf.spec.job.codeline}/${build.id}/ats_reports/simplelogger/testreport.xml,report${line.separator}" file="${build.log.dir}/bitinfo.txt" append="true"/> |
|
805 |
</then></if> |
|
806 |
<if><and><equals arg1="${sf.spec.bccheck.enable}" arg2="true"/><equals arg1="${sf.spec.bccheck.enable.ha}" arg2="true"/></and><then> |
|
807 |
<echo message="report	Binary Compatibility Report (Headerfiles),http://cdn.symbian.org/SF_builds/${sf.spec.job.name}/builds/${sf.spec.job.codeline}/${build.id}/BC/headers_report.xml,report${line.separator}" file="${build.log.dir}/bitinfo.txt" append="true"/> |
|
808 |
</then></if> |
|
809 |
<if><and><equals arg1="${sf.spec.bccheck.enable}" arg2="true"/><equals arg1="${sf.spec.bccheck.enable.la}" arg2="true"/></and><then> |
|
810 |
<echo message="report	Binary Compatibility Report (Libraries),http://cdn.symbian.org/SF_builds/${sf.spec.job.name}/builds/${sf.spec.job.codeline}/${build.id}/BC/libraries_report.xml,report${line.separator}" file="${build.log.dir}/bitinfo.txt" append="true"/> |
|
811 |
</then></if> |
|
812 |
<if><equals arg1="${sf.spec.bccheck.enable.dynamic}" arg2="true"/><then> |
|
813 |
<echo message="report	Dynamic BC Test Reports,http://cdn.symbian.org/SF_builds/${sf.spec.job.name}/builds/${sf.spec.job.codeline}/${build.id}/ats_reports/index.html,report${line.separator}" file="${build.log.dir}/bitinfo.txt" append="true"/> |
|
814 |
</then></if> |
|
815 |
</target> |
|
816 |
||
817 |
<target name="sf-merge-brag"> |
|
818 |
<!-- Merge all our bits of XML together --> |
|
819 |
<exec executable="perl" output="${build.log.dir}/summary/_BRAG.xml" logError="true"> |
|
820 |
<arg value="${sf.common.config.dir}/tools/mergeXML.pl"/> |
|
821 |
<arg value="--xsl=brag.xsl"/> |
|
822 |
<arg value="--merge=buildStatus,phase(name),step(name),failures(level)"/> |
|
823 |
<arg value="${build.log.dir}/summary/*?_BRAG.xml"/> |
|
824 |
</exec> |
|
825 |
</target> |
|
826 |
||
827 |
<target name="sf-brag-to-diamonds"> |
|
828 |
<!-- Run XSL transform to create file to send to diamonds --> |
|
829 |
<java jar="${sf.common.config.dir}/sysdefdowngrade/xalan-j_2_7_1/xalan.jar" fork="true"> |
|
830 |
<arg value="-IN"/> |
|
831 |
<arg value="${build.log.dir}/summary/_BRAG.xml"/> |
|
832 |
<arg value="-XSL"/> |
|
833 |
<arg value="${sf.common.config.dir}/tools/brag/bragForDiamonds.xsl"/> |
|
834 |
<arg value="-OUT"/> |
|
835 |
<arg value="${build.log.dir}/diamonds-status.xml"/> |
|
836 |
</java> |
|
837 |
<if> |
|
838 |
<istrue value="${sf.spec.publish.enable}"/> |
|
839 |
<then> |
|
840 |
<!-- Make sure that the summary directory is available to display the BRAG link --> |
|
841 |
<mkdir dir="${publish.dir}/summary/"/> |
|
842 |
<copy todir="${publish.dir}/summary/" preservelastmodified="true" failonerror="false"> |
|
843 |
<fileset dir="${build.log.dir}/summary/"><include name="*.*"/></fileset> |
|
844 |
</copy> |
|
845 |
||
846 |
<!-- Try to obtain the diamonds ID for this build --> |
|
847 |
<if> |
|
848 |
<not><isset property="diamonds.build.id"/></not> |
|
849 |
<then> |
|
850 |
<property file="${build.log.dir}/diamonds_build_id.properties"/> <!-- This will fail silently --> |
|
851 |
</then> |
|
852 |
</if> |
|
853 |
<if> |
|
854 |
<isset property="diamonds.build.id"/> |
|
855 |
<then> |
|
856 |
<!-- Send the data to the server --> |
|
857 |
<exec executable="python"> |
|
858 |
<arg value="${sf.common.config.dir}/tools/brag/send_xml_to_diamonds.py"/> |
|
859 |
<arg value="-u"/> |
|
860 |
<arg value="http://${diamonds.host}${diamonds.build.id}"/> |
|
861 |
<arg value="-f"/> |
|
862 |
<arg value="${build.log.dir}/diamonds-status.xml"/> |
|
863 |
</exec> |
|
864 |
</then> |
|
865 |
<else> |
|
866 |
<echo message="diamonds.build.id is not known - unable to push any build specific information to diamonds server"/> |
|
867 |
</else> |
|
868 |
</if> |
|
869 |
</then> |
|
870 |
</if> |
|
871 |
</target> |
|
872 |
||
873 |
<target name="sf-check-utilities-dir"> |
|
874 |
<available property="sf-utilities-available" file="${build.drive}/utilities" type="dir"/> |
|
875 |
</target> |
|
876 |
||
877 |
<target name="sf-compare-to-baseline" depends="sf-check-utilities-dir" if="sf-utilities-available"> |
|
878 |
<property name="sf.releasenotes.wiki.txt" value="${build.log.dir}/releaseNotes.wiki.txt"/> |
|
879 |
<delete file="${sf.releasenotes.wiki.txt}"/> |
|
880 |
<!-- FCL Usage and Changesets --> |
|
881 |
<exec executable="perl" dir="${build.drive}" output="${sf.releasenotes.wiki.txt}"> |
|
882 |
<arg value="-I"/> |
|
883 |
<arg value="${sf.common.config.dir}/tools/lib"/> |
|
884 |
<arg value="${build.drive}/utilities/releaseAutomation/releaseNotes.pl"/> |
|
885 |
<arg value="--sources=${build.log.dir}/BOM/sources.csv"/> |
|
886 |
<arg value="--baseline=${sf.previous.pdk.tag}"/> |
|
887 |
</exec> |
|
888 |
<!-- Package Comparison and FCL Usage --> |
|
889 |
<exec executable="perl" dir="${sf.spec.sourcesync.sourcespecdir}" output="${sf.releasenotes.wiki.txt}" append="true"> |
|
890 |
<arg value="${build.drive}/utilities/releaseAutomation/packageComparison.pl"/> |
|
891 |
<arg value="--sources=${sf.spec.sourcesync.sourcespecdir}/${sf.spec.sourcesync.sourcespecfile}"/> |
|
892 |
<arg value="--sysdef=${sf.spec.sourcesync.sourcespecdir}/sysdefs/system_model.xml"/> |
|
893 |
<arg value="--sysdef=${sf.spec.sourcesync.sourcespecdir}/sysdefs/system_model_os.xml"/> |
|
894 |
<arg value="--sysdef=${sf.spec.sourcesync.sourcespecdir}/sysdefs/system_model_s60.xml"/> |
|
895 |
<arg value="--baseline=${sf.previous.pdk.tag}"/> |
|
896 |
</exec> |
|
897 |
<!-- Mercurial comparison --> |
|
898 |
<echo file="${sf.releasenotes.wiki.txt}" append="true">== Mercurial Comparison ==${line.separator}${line.separator}</echo> |
|
899 |
<if> |
|
900 |
<isset property="sf.previous.pdk.tag"/> |
|
901 |
<then> |
|
902 |
<echo file="${sf.releasenotes.wiki.txt}" append="true">The Mercurial changes from Nokia were delivered as a bulk update based on '''XXXXXXXXXXXXXXXXXXXXXX'''.${line.separator}${line.separator}List of the Mercurial changes (files added/removed/modified) between ${sf.previous.pdk.tag} and PDK '''XXXXX''' - [[Media:XXXX.txt]].${line.separator}${line.separator}A short study of the results concentrating on the added and removed files has identified these significant package changes:${line.separator}${line.separator}</echo> |
|
903 |
<if> |
|
904 |
<istrue value="${sf.spec.sourcesync.archive}"/> |
|
905 |
<then> |
|
906 |
<echo file="${sf.releasenotes.wiki.txt}" append="true">'''Information cannot be derived as source was synced with archive option'''"${line.separator}${line.separator}</echo> |
|
907 |
</then> |
|
908 |
<else> |
|
909 |
<exec executable="perl" dir="${build.drive}/" output="${sf.releasenotes.wiki.txt}" append="true"> |
|
910 |
<arg value="${build.drive}/utilities/releaseAutomation/mercurialComparison.pl"/> |
|
911 |
<arg value="${build.log.dir}/BOM/build-info.xml"/> |
|
912 |
<arg value="${sf.previous.pdk.tag}"/> |
|
913 |
<arg value="${build.log.dir}/mercurialComparison.tsv"/> |
|
914 |
</exec> |
|
915 |
</else> |
|
916 |
</if> |
|
917 |
</then> |
|
918 |
<else> |
|
919 |
<echo file="${sf.releasenotes.wiki.txt}" append="true">'''Information cannot be provided as the tag for the previous PDK was not provided to the build'''"${line.separator}${line.separator}</echo> |
|
920 |
</else> |
|
921 |
</if> |
|
922 |
||
923 |
<!-- Code churn --> |
|
924 |
<!-- TODO? --> |
|
925 |
<fixcrlf file="${sf.releasenotes.wiki.txt}"/> |
|
926 |
</target> |
|
927 |
||
928 |
<!-- package all logs into zipfile for publishing --> |
|
929 |
<target name="sf-zip-logs" > |
|
1220
f2fbf395f696
Dont fail build in event that System Model copy fails.
Shabe Razvi <shaber@symbian.org>
parents:
1219
diff
changeset
|
930 |
<!-- Moved from generate-layers, for Package build only. --> |
f2fbf395f696
Dont fail build in event that System Model copy fails.
Shabe Razvi <shaber@symbian.org>
parents:
1219
diff
changeset
|
931 |
<copy overwrite="true" file="${build.drive}/output/build/canonical_system_definition_${sf.spec.sysdef.configurations.list}.xml" todir="${build.log.dir}/BOM/" failonerror="false"/> |
1219 | 932 |
<if> |
933 |
<istrue value="${sf.spec.logs.zip.enable}"/> |
|
934 |
<then> |
|
935 |
<mkdir dir="${build.output.dir}/zips/release"/> <!-- workaround for when there's no other releaseables, just the logs --> |
|
936 |
<zip destfile="${build.output.dir}/zips/release/build_logs.zip" basedir="${build.drive}"> |
|
937 |
<include name="output/logs/**"/> |
|
938 |
<exclude name="output/logs/BC/**"/> |
|
939 |
<exclude name="output/logs/BOM/**"/> |
|
940 |
<exclude name="output/logs/deliverables/**"/> |
|
941 |
<exclude name="output/logs/releaseables/**"/> |
|
942 |
</zip> |
|
943 |
<!-- workaround for the time when when 'sf-run-analysis-raptor' has not been run --> |
|
944 |
<mkdir dir="${build.drive}/output/logs/releaseables"/> |
|
945 |
<if> |
|
946 |
<available file="${build.drive}/output/logs/package_definitions" type="dir"/> |
|
947 |
<then> |
|
948 |
<zip destfile="${build.output.dir}/zips/release/build_BOM.zip"> |
|
949 |
<zipfileset dir="${build.drive}/output/logs/BOM" prefix="build_info/logs/BOM"/> |
|
950 |
<zipfileset dir="${build.drive}/output/logs/releaseables" prefix="build_info/logs/releaseables"/> |
|
951 |
<zipfileset dir="${build.drive}/output/logs" prefix="build_info/logs/BOM"> |
|
952 |
<include name="envinfo.txt"/> |
|
953 |
</zipfileset> |
|
954 |
<zipfileset dir="${build.drive}/output/logs/package_definitions" prefix="build_info/package_definitions"/> |
|
955 |
</zip> |
|
956 |
</then> |
|
957 |
<else> |
|
958 |
<zip destfile="${build.output.dir}/zips/release/build_BOM.zip"> |
|
959 |
<zipfileset dir="${build.drive}/output/logs/BOM" prefix="build_info/logs/BOM"/> |
|
960 |
<zipfileset dir="${build.drive}/output/logs/releaseables" prefix="build_info/logs/releaseables"/> |
|
961 |
<zipfileset dir="${build.drive}/output/logs" prefix="build_info/logs/BOM"> |
|
962 |
<include name="envinfo.txt"/> |
|
963 |
</zipfileset> |
|
964 |
</zip> |
|
965 |
</else> |
|
966 |
</if> |
|
967 |
<antcall target="sf-zip-content"> |
|
968 |
<param name="zip.config.file" value="${temp.build.dir}/zip.cfg.xml.ftl"/> |
|
969 |
<param name="zip.target.name" value="info-just-metadata" /> |
|
970 |
</antcall> |
|
971 |
</then> |
|
972 |
</if> |
|
973 |
</target> |
|
974 |
||
975 |
<target name="sf-publish" depends="prep-publish"> |
|
976 |
<copy todir="${publish.dir}" preservelastmodified="true" failonerror="false"> |
|
977 |
<fileset dir="${build.output.dir}/zips/release/"><include name="build_*.zip"/></fileset> |
|
978 |
</copy> |
|
979 |
<mkdir dir="${publish.dir}/html"/> |
|
980 |
<copy todir="${publish.dir}/html" preservelastmodified="true" failonerror="false"> |
|
981 |
<fileset dir="${build.log.dir}/html"><include name="*.html"/></fileset> |
|
982 |
</copy> |
|
983 |
<mkdir dir="${publish.dir}/BC"/> |
|
984 |
<copy todir="${publish.dir}/BC" preservelastmodified="true" failonerror="false"> |
|
985 |
<fileset dir="${build.log.dir}/BC/"> |
|
986 |
<include name="BBCResults.xsl"/> |
|
987 |
<include name="headers_report.xml"/> |
|
988 |
<include name="libraries_report.xml"/> |
|
989 |
</fileset> |
|
990 |
</copy> |
|
991 |
<mkdir dir="${publish.dir}/ats_reports"/> |
|
992 |
<copy file="${sf.common.config.dir}/tools/ats/report_dummy.html" tofile="${publish.dir}/ats_reports/index.html" failonerror="false"/> |
|
993 |
</target> |
|
994 |
||
995 |
<!-- TODO: Make this work for package builds once we have sysmodel story worked out --> |
|
996 |
<target name="sf-run-analysis-missing-files" if="sf.spec.checkbuild"> |
|
997 |
<runtarget target="sf-check-missing-os-files"/> |
|
998 |
</target> |
|
999 |
||
1000 |
<target name="sf-check-missing-os-files" depends="sf-compile-options"> |
|
1001 |
<hlm:argSet id="sbs.check.tools.var"> |
|
1002 |
<hlm:arg name="config" value="${sf.spec.sbs.tools.config}" /> |
|
1003 |
<hlm:arg name="run-check" value="true" /> |
|
1004 |
</hlm:argSet> |
|
1005 |
||
1006 |
<hlm:argSet id="sbs.check.main.var"> |
|
1007 |
<hlm:arg name="config" value="${sf.spec.sbs.config}" /> |
|
1008 |
<hlm:arg name="run-check" value="true" /> |
|
1009 |
</hlm:argSet> |
|
1010 |
<antcall target="compile-main" inheritAll="false" inheritRefs="true"> |
|
1011 |
<param name="build.system" value="${sf.spec.build.system}" /> |
|
1012 |
<param name="sysdef.configurations.list" value="${sf.spec.os.sysdef.clean.configurations.list}" /> |
|
1013 |
<param name="build.id" value ="sbs_check"/> |
|
1014 |
<reference refid="sbs.check.tools.var" torefid="sbs.var" /> |
|
1015 |
<reference refid="sbs.toolsbuild.options" torefid="sbs.make.options" /> |
|
1016 |
<reference refid="sf.spec.os.system.definition.files" torefid="system.definition.files" /> |
|
1017 |
</antcall> |
|
1018 |
<if><istrue value="${sf.os.compile.iterate}"/> |
|
1019 |
<then> |
|
1020 |
<for list="${sf.spec.sbs.config}" delimiter="," param="sf.spec.check.splitconfig"> |
|
1021 |
<sequential> |
|
1022 |
<echo message="INFO [Iterative check] @{sf.spec.check.splitconfig}"/> |
|
1023 |
<hlm:argSet id="sbs.check.iterate.main.var"> |
|
1024 |
<hlm:arg name="config" value="@{sf.spec.check.splitconfig}" /> |
|
1025 |
<hlm:arg name="run-check" value="true" /> |
|
1026 |
</hlm:argSet> |
|
1027 |
||
1028 |
<antcall target="compile-main" inheritAll="false" inheritRefs="true"> |
|
1029 |
<param name="build.system" value="${sf.spec.build.system}" /> |
|
1030 |
<param name="sysdef.configurations.list" value="${sf.spec.os.sysdef.clean.configurations.list}" /> |
|
1031 |
<param name="build.id" value ="sbs_check"/> |
|
1032 |
<reference refid="sbs.check.iterate.main.var" torefid="sbs.var" /> |
|
1033 |
<reference refid="sbs.fullbuild.options" torefid="sbs.make.options" /> |
|
1034 |
<reference refid="sf.spec.os.system.definition.files" torefid="system.definition.files" /> |
|
1035 |
</antcall> |
|
1036 |
</sequential> |
|
1037 |
</for> |
|
1038 |
</then> |
|
1039 |
<else> |
|
1040 |
<antcall target="compile-main" inheritAll="false" inheritRefs="true"> |
|
1041 |
<param name="build.system" value="${sf.spec.build.system}" /> |
|
1042 |
<param name="sysdef.configurations.list" value="${sf.spec.os.sysdef.clean.configurations.list}" /> |
|
1043 |
<param name="build.id" value ="sbs_check"/> |
|
1044 |
<reference refid="sbs.check.main.var" torefid="sbs.var" /> |
|
1045 |
<reference refid="sbs.fullbuild.options" torefid="sbs.make.options" /> |
|
1046 |
<reference refid="sf.spec.os.system.definition.files" torefid="system.definition.files" /> |
|
1047 |
</antcall> |
|
1048 |
</else> |
|
1049 |
</if> |
|
1050 |
</target> |
|
1051 |
||
1052 |
<target name="sf-create-public-PDK" depends="sf-prebuild,sf-run-sfl-licence-munging" > |
|
1053 |
<if> |
|
1054 |
<istrue value="${sf.spec.md5.enable}"/> |
|
1055 |
<then> |
|
1056 |
<echo message="INFO Creating MD5s"/> |
|
1057 |
<runtarget target="sf-run-evalid"/> |
|
1058 |
</then> |
|
1059 |
</if> |
|
1060 |
||
1061 |
<!-- Package up the binaries we built --> |
|
1062 |
<if> |
|
1063 |
<istrue value="${sf.spec.package.bin.enable}"/> |
|
1064 |
<then> |
|
1065 |
<echo message="INFO Packaging Binaries"/> |
|
1066 |
<runtarget target="sf-package-binary"/> |
|
1067 |
||
1068 |
<echo message="INFO Validate Zip files"/> |
|
1069 |
<runtarget target="sf-package-validate"/> |
|
1070 |
</then> |
|
1071 |
</if> |
|
1072 |
<runtarget target="sf-merge-brag"/> |
|
1073 |
<runtarget target="sf-zip-logs"/> |
|
1074 |
||
1075 |
<if> |
|
1076 |
<istrue value="${sf.spec.publish.enable}" /> |
|
1077 |
<then> |
|
1078 |
<echo message="Send links to Diamonds"/> |
|
1079 |
<runtarget target="sf-links-to-diamonds"/> |
|
1080 |
<echo message="Send BRAG status information to Diamonds"/> |
|
1081 |
<runtarget target="sf-brag-to-diamonds"/> |
|
1082 |
||
1083 |
<echo message="Publish log files and reports to ${sf.spec.publish.rootdir}"/> |
|
1084 |
<runtarget target="sf-publish"/> |
|
1085 |
</then> |
|
1086 |
</if> |
|
1087 |
</target> |
|
1088 |
||
1089 |
<target name="sf-run-sfl-licence-munging" depends="sf-check-utilities-dir" if="sf-utilities-available"> |
|
1090 |
<echo message="Running SFL Licence Munging writing log to ${build.log.dir}"/> |
|
1091 |
<stopwatch name="munge" action="start"/> |
|
1092 |
<exec executable="perl" dir="${build.drive}" failonerror="false" output="${build.log.dir}/postbuild_sfl-licence_munging_results.log"> |
|
1093 |
<arg value="${build.drive}/utilities/williamr/convert_to_eula.pl"/> |
|
1094 |
</exec> |
|
1095 |
<stopwatch name="munge" action="total"/> |
|
1096 |
</target> |
|
1097 |
||
1098 |
<target name="sf-copy-rom-logs"> |
|
1099 |
<property name="sf.rombuild.dir" value="${build.drive}/epoc32/rom/"/> |
|
1100 |
<!-- copy log files for each variant we have --> |
|
1101 |
<echo message="build.log.dir= ${build.log.dir}"/> |
|
1102 |
<echo message="sf.rombuild.dir= ${sf.rombuild.dir}"/> |
|
1103 |
<echo message="sf.spec.referenceroms.variant= ${sf.spec.referenceroms.variant}"/> |
|
1104 |
||
1105 |
<copy todir="${build.log.dir}" preservelastmodified="true" failonerror="false"> |
|
1106 |
<fileset dir="${sf.rombuild.dir}/${sf.spec.referenceroms.variant}/"><include name="*ROMBUILD.LOG"/></fileset> |
|
1107 |
</copy> |
|
1108 |
||
1109 |
<copy todir="${build.log.dir}" preservelastmodified="true" failonerror="false"> |
|
1110 |
<fileset dir="${sf.rombuild.dir}/${sf.spec.referenceroms.variant}/"><include name="*rom.oby"/></fileset> |
|
1111 |
</copy> |
|
1112 |
</target> |
|
1113 |
||
1114 |
<target name="sf-build-roms"> |
|
1115 |
<!-- find out if this is an arm build, if it is, then build roms --> |
|
1116 |
<propertyregex property="sf.is.arm.build" override="true" input="${sf.spec.sbs.config}" regexp="(arm.*)" replace="true" casesensitive="false"/> |
|
1117 |
||
1118 |
<if><isset property="sf.is.arm.build"/> |
|
1119 |
<then> |
|
1120 |
<mkdir dir="${roms.log.dir}"/> |
|
1121 |
<echo message="INFO Building Syborg MiniGUI stripped ROM"/> |
|
1122 |
<exec executable="cmd" dir="${build.drive}/epoc32/rom" failonerror="false"> |
|
1123 |
<arg value="/c"/> |
|
1124 |
<arg value="buildrom syborg minigui-stripped"/> |
|
1125 |
</exec> |
|
1126 |
<if> |
|
1127 |
<!-- is iMaker rom building enabled? --> |
|
1128 |
<istrue value="${sf.spec.referenceroms.createimages.enable}" /> |
|
1129 |
<then> |
|
1130 |
<echo message="INFO Building iMaker configurations"/> |
|
1131 |
<runtarget target="build-roms"/> |
|
1132 |
</then> |
|
1133 |
</if> |
|
1134 |
</then> |
|
1135 |
</if> |
|
1136 |
</target> |
|
1137 |
||
1138 |
</project> |