blob: 7a8d183e6cc6da4c9ec024ad187c84b84695e59a [file] [log] [blame]
david_williams42f9b242006-11-27 18:45:14 +00001<cruisecontrol>
2
david_williams2f3f8432006-12-18 03:18:23 +00003 <!--
4 Note to be cross-platform, "environment variables" are only appropriate for
5 some variables, e.g. ones we set, since properties are case sensitive, even if
6 the environment variables on your operating system are not, e.g. it will
david_williams42f9b242006-11-27 18:45:14 +00007 be ${env.Path} not ${env.PATH} on Windows -->
david_williamsa33db8f2006-11-27 23:36:51 +00008 <property
9 environment="env"
10 toupper="true" />
david_williams42f9b242006-11-27 18:45:14 +000011
david_williams2f3f8432006-12-18 03:18:23 +000012 <!-- Note: can not quite use "standard properites" pattern, as in ant files,
david_williams42f9b242006-11-27 18:45:14 +000013 since for CC, it is an error if a property file does not exist. -->
14
15 <!-- remember, our logDir must be same as logdir specified in CC's web.xml file -->
16 <property
17 name="logDir"
18 value="${env.LOG_DIR}/${project.name}" />
19
20
21 <property
22 name="time.tenMinutes"
23 value="600" />
24
25 <property
26 name="time.oneHour"
27 value="3600" />
28
29 <property
30 name="time.VeryVeryLongTime"
31 value="31536000" />
32
33 <plugin
34 name="log"
35 dir="${logDir}"
36 encoding="ISO-8859-1" />
37
38 <plugin
39 name="currentbuildstatuslistener"
40 file="${logDir}/buildstatus.html" />
41
42 <plugin
david_williamsa33db8f2006-11-27 23:36:51 +000043 name="dateformat"
44 format="yyyyMMdd-HHmm z" />
45
46 <plugin
david_williams42f9b242006-11-27 18:45:14 +000047 name="project"
48 buildafterfailed="true">
49 <dateformat format="yyyyMMdd-HHmm z" />
50 <log
51 dir="${logDir}"
52 encoding="ISO-8859-1" />
david_williams42f9b242006-11-27 18:45:14 +000053 <listeners>
54 <currentbuildstatuslistener />
55 </listeners>
56 <modificationset>
57 <forceonly />
58 </modificationset>
59 <publishers>
60 <email
61 mailhost="localhost"
62 returnaddress="${env.BUILD_BUILDMASTER_EMAIL}"
63 skipusers="false"
64 subjectprefix="[${project.name}]"
65 spamwhilebroken="false"
66 buildresultsurl="${env.BUILD_RESULT_URL}/${project.name}">
67 <always address="${env.BUILD_TOADDRESS}" />
68 </email>
69 </publishers>
70 </plugin>
71
72 <plugin
73 name="cvs"
74 cvsroot="${env.CVS_MAIN_REPO}" />
75
david_williams2f3f8432006-12-18 03:18:23 +000076 <!--
77 Note: projects should normally be named in the form
david_williams42f9b242006-11-27 18:45:14 +000078 ${build.distribution}-${buildBranch}-${buildType}
79 -->
80
david_williams10566a52006-12-05 09:18:30 +000081 <project name="patches-R1.5-P">
david_williams42f9b242006-11-27 18:45:14 +000082
david_williamsa33db8f2006-11-27 23:36:51 +000083 <schedule interval="${time.VeryVeryLongTime}">
david_williams42f9b242006-11-27 18:45:14 +000084 <ant
85 antscript="${env.BUILD_HOME}/releng.control/ant.sh"
86 buildfile="cc_project_build.xml"
87 target="Build"
88 useQuiet="false"
89 useLogger="false"
90 savelogdir="${logDir}"
91 usedebug="false"
92 antworkingdir="${env.BUILD_HOME}/releng.control">
93
94 <property
95 name="buildType"
96 value="P" />
97
david_williams2f3f8432006-12-18 03:18:23 +000098 <!-- need to make this build ID a better variable,
99 especially for this 'patch' case
david_williams42f9b242006-11-27 18:45:14 +0000100 <property
101 name="buildId"
102 value="B163391" />
david_williams10566a52006-12-05 09:18:30 +0000103 -->
david_williams42f9b242006-11-27 18:45:14 +0000104 <property
105 name="buildBranch"
106 value="R1.5" />
107 <property
108 name="checkoutprojectname"
109 value="${project.name}" />
110
111 <property
112 name="mapVersionTag"
113 value="R1_5_maintenance_patches" />
114
115 <property
116 name="build.distribution"
117 value="patches" />
118
119
120 </ant>
121 </schedule>
122
123 </project>
124
125
david_williams42f9b242006-11-27 18:45:14 +0000126 <project name="wtp-R1.5-M">
127 <!-- Defines where cruise looks for changes, to decide whether to run the build -->
128 <modificationset quietperiod="120">
129 <cvs
david_williamsc8649f72006-12-06 22:01:56 +0000130 tag="R1_5_maintenance"
david_williams42f9b242006-11-27 18:45:14 +0000131 module="releng" />
david_williams2f3f8432006-12-18 03:18:23 +0000132
david_williams42f9b242006-11-27 18:45:14 +0000133 </modificationset>
134
135 <schedule interval="${time.oneHour}">
136 <ant
137 antscript="${env.BUILD_HOME}/releng.control/ant.sh"
138 buildfile="cc_project_build.xml"
139 target="Build"
140 useQuiet="false"
141 useLogger="false"
142 savelogdir="${logDir}"
143 usedebug="false"
144 antworkingdir="${env.BUILD_HOME}/releng.control">
145
146 <!-- this "M" label should be changed to "R" once maintenance release
147 is warming up for its "R"elease.
148 -->
149 <property
150 name="buildType"
jlanutic0beaa62007-05-07 14:00:13 +0000151 value="M" />
david_williams42f9b242006-11-27 18:45:14 +0000152
153 <property
154 name="buildId"
jlanutic0beaa62007-05-07 14:00:13 +0000155 value="1.5.5" />
david_williams42f9b242006-11-27 18:45:14 +0000156 <property
157 name="buildBranch"
158 value="R1.5" />
159
160 <property
161 name="checkoutprojectname"
162 value="${project.name}" />
163
164
165 <property
166 name="mapVersionTag"
167 value="R1_5_maintenance" />
168
169
170 </ant>
171 </schedule>
david_williamsa33db8f2006-11-27 23:36:51 +0000172
david_williams42f9b242006-11-27 18:45:14 +0000173 </project>
174
david_williamsa7f68be2007-06-20 02:17:13 +0000175 <project name="retest-wtp-R1.5-M">
176 <!-- Defines where cruise looks for changes, to decide whether to run the build -->
177 <modificationset quietperiod="120">
178 <cvs
179 tag="R1_5_maintenance"
180 module="releng" />
181
182 </modificationset>
183
184 <schedule interval="${time.VeryVeryLongTime}">
185 <ant
186 antscript="${env.BUILD_HOME}/releng.control/ant.sh"
187 buildfile="cc_project_retest.xml"
188 target="Build"
189 useQuiet="false"
190 useLogger="false"
191 savelogdir="${logDir}"
192 usedebug="false"
193 antworkingdir="${env.BUILD_HOME}/releng.control">
194
195 <!-- this "M" label should be changed to "R" once maintenance release
196 is warming up for its "R"elease.
197 -->
198 <property
199 name="buildType"
200 value="M" />
201
202 <property
203 name="buildId"
204 value="1.5.5" />
205 <property
206 name="buildBranch"
207 value="R1.5" />
208
209 <property
210 name="checkoutprojectname"
211 value="${project.name}" />
212
213
214 <property
215 name="mapVersionTag"
216 value="R1_5_maintenance" />
217
218
219 </ant>
220 </schedule>
221
222 </project>
223
david_williams7888d502007-06-29 06:26:51 +0000224 <project name="wtp-R2.0-M">
225 <!-- Defines where cruise looks for changes, to decide whether to run the build -->
226 <modificationset quietperiod="120">
227 <cvs
228 tag="R2_0_maintenance"
229 module="releng" />
230 <cvs
231 tag="R1_0_maintenance"
232 module="releng.dali" />
233 <cvs
234 tag="R1_0_maintenance"
235 module="releng-jsf" />
236 </modificationset>
david_williams42f9b242006-11-27 18:45:14 +0000237
david_williams7888d502007-06-29 06:26:51 +0000238 <schedule interval="${time.oneHour}">
239 <ant
240 antscript="${env.BUILD_HOME}/releng.control/ant.sh"
241 buildfile="cc_project_build.xml"
242 target="Build"
243 useQuiet="false"
244 useLogger="false"
245 savelogdir="${logDir}"
246 usedebug="false"
247 antworkingdir="${env.BUILD_HOME}/releng.control">
248
249 <!-- this "M" label should be changed to "R" once maintenance release
250 is warming up for its "R"elease.
251 -->
252 <property
253 name="buildType"
254 value="M" />
255
256 <property
257 name="buildId"
258 value="2.0.1" />
259 <property
260 name="buildBranch"
261 value="R2.0" />
262
263 <property
264 name="checkoutprojectname"
265 value="${project.name}" />
266
267
268 <property
269 name="mapVersionTag"
270 value="R2_0_maintenance" />
david_williamsa8e26d52007-06-30 22:38:29 +0000271 <!-- HEAD for now, but change to R1_0_maintenance once they exist -->
david_williams7888d502007-06-29 06:26:51 +0000272 <property
273 name="releng.dali-mapVersionTag"
david_williamsa8e26d52007-06-30 22:38:29 +0000274 value="HEAD"/>
david_williams7888d502007-06-29 06:26:51 +0000275 <property
276 name="releng-jsf-mapVersionTag"
david_williamsa8e26d52007-06-30 22:38:29 +0000277 value="HEAD"/>
david_williams7888d502007-06-29 06:26:51 +0000278
279
280 </ant>
281 </schedule>
282
283 </project>
284 <project name="wtp-R3.0-I">
david_williams42f9b242006-11-27 18:45:14 +0000285 <!-- Defines where cruise looks for changes, to decide whether to run the build -->
286 <modificationset quietperiod="120">
287 <cvs module="releng" />
288 <cvs module="releng-jsf" />
289 <cvs module="releng.dali" />
david_williams2f3f8432006-12-18 03:18:23 +0000290
david_williams42f9b242006-11-27 18:45:14 +0000291 </modificationset>
292
david_williams68a2ea32007-06-29 06:33:41 +0000293 <schedule interval="${time.oneHour}">
david_williams42f9b242006-11-27 18:45:14 +0000294 <ant
295 antscript="${env.BUILD_HOME}/releng.control/ant.sh"
296 buildfile="cc_project_build.xml"
297 target="Build"
298 useQuiet="false"
299 useLogger="false"
300 savelogdir="${logDir}"
301 usedebug="false"
302 antworkingdir="${env.BUILD_HOME}/releng.control">
303 <property
304 name="buildType"
305 value="I" />
306 <property
307 name="buildBranch"
david_williams7888d502007-06-29 06:26:51 +0000308 value="R3.0" />
david_williams42f9b242006-11-27 18:45:14 +0000309 <property
310 name="checkoutprojectname"
311 value="${project.name}" />
312
313 <property
314 name="mapVersionTag"
315 value="HEAD" />
316 <property
david_williams59916eb2007-07-01 05:37:21 +0000317 name="releng.dali-mapVersionTag"
318 value="HEAD"/>
319 <property
320 name="releng-jsf-mapVersionTag"
321 value="HEAD"/>
322 <property
david_williams42f9b242006-11-27 18:45:14 +0000323 name="build.distribution"
324 value="wtp" />
325
326
327 </ant>
328 </schedule>
david_williamsa33db8f2006-11-27 23:36:51 +0000329
david_williams42f9b242006-11-27 18:45:14 +0000330 </project>
david_williams7888d502007-06-29 06:26:51 +0000331 <project name="retest-wtp-R3.0-I">
david_williamsa7f68be2007-06-20 02:17:13 +0000332 <!-- Defines where cruise looks for changes, to decide whether to run the build -->
333 <modificationset quietperiod="120">
334 <cvs module="releng" />
335 <cvs module="releng-jsf" />
336 <cvs module="releng.dali" />
david_williams42f9b242006-11-27 18:45:14 +0000337
david_williamsa7f68be2007-06-20 02:17:13 +0000338 </modificationset>
339
340 <schedule interval="${time.VeryVeryLongTime}">
341 <ant
342 antscript="${env.BUILD_HOME}/releng.control/ant.sh"
343 buildfile="cc_project_retest.xml"
344 target="Build"
345 useQuiet="false"
346 useLogger="false"
347 savelogdir="${logDir}"
348 usedebug="false"
349 antworkingdir="${env.BUILD_HOME}/releng.control">
350 <property
351 name="buildType"
352 value="I" />
353 <property
354 name="buildBranch"
david_williams7888d502007-06-29 06:26:51 +0000355 value="R3.0" />
david_williamsa7f68be2007-06-20 02:17:13 +0000356 <property
357 name="checkoutprojectname"
358 value="${project.name}" />
359
360 <property
361 name="mapVersionTag"
362 value="HEAD" />
363 <property
david_williams59916eb2007-07-01 05:37:21 +0000364 name="releng.dali-mapVersionTag"
365 value="HEAD"/>
366 <property
367 name="releng-jsf-mapVersionTag"
368 value="HEAD"/>
369 <property
david_williamsa7f68be2007-06-20 02:17:13 +0000370 name="build.distribution"
371 value="wtp" />
372
373
374 </ant>
375 </schedule>
376
377 </project>
378
david_williams42f9b242006-11-27 18:45:14 +0000379
david_williams7888d502007-06-29 06:26:51 +0000380 <project name="wtp-R3.0-N">
david_williams42f9b242006-11-27 18:45:14 +0000381
david_williamsa33db8f2006-11-27 23:36:51 +0000382 <schedule interval="${time.VeryVeryLongTime}">
david_williams42f9b242006-11-27 18:45:14 +0000383 <ant
384 antscript="${env.BUILD_HOME}/releng.control/ant.sh"
385 buildfile="cc_project_build.xml"
386 target="Build"
387 useQuiet="false"
388 useLogger="false"
389 savelogdir="${logDir}"
390 usedebug="false"
391 antworkingdir="${env.BUILD_HOME}/releng.control">
392 <property
393 name="buildType"
394 value="N" />
395 <!-- in this context, buildBranch is simply a label -->
396 <property
397 name="buildBranch"
david_williams7888d502007-06-29 06:26:51 +0000398 value="R3.0" />
david_williams42f9b242006-11-27 18:45:14 +0000399 <property
400 name="mapVersionTag"
401 value="HEAD" />
402 <property
david_williams59916eb2007-07-01 05:37:21 +0000403 name="releng.dali-mapVersionTag"
404 value="HEAD"/>
405 <property
406 name="releng-jsf-mapVersionTag"
407 value="HEAD"/>
408 <property
david_williams42f9b242006-11-27 18:45:14 +0000409 name="build.distribution"
410 value="wtp" />
411 <property
412 name="build.trial"
413 value="true" />
414
415
416 </ant>
417 </schedule>
david_williamsa33db8f2006-11-27 23:36:51 +0000418
david_williams42f9b242006-11-27 18:45:14 +0000419 </project>
david_williams7888d502007-06-29 06:26:51 +0000420 <project name="retest-wtp-R3.0-N">
david_williams42f9b242006-11-27 18:45:14 +0000421
david_williamsa7f68be2007-06-20 02:17:13 +0000422 <schedule interval="${time.VeryVeryLongTime}">
423 <ant
424 antscript="${env.BUILD_HOME}/releng.control/ant.sh"
425 buildfile="cc_project_retest.xml"
426 target="Build"
427 useQuiet="false"
428 useLogger="false"
429 savelogdir="${logDir}"
430 usedebug="false"
431 antworkingdir="${env.BUILD_HOME}/releng.control">
432 <property
433 name="buildType"
434 value="N" />
435 <!-- in this context, buildBranch is simply a label -->
436 <property
437 name="buildBranch"
david_williams7888d502007-06-29 06:26:51 +0000438 value="R3.0" />
david_williamsa7f68be2007-06-20 02:17:13 +0000439 <property
440 name="mapVersionTag"
441 value="HEAD" />
442 <property
david_williams59916eb2007-07-01 05:37:21 +0000443 name="releng.dali-mapVersionTag"
444 value="HEAD"/>
445 <property
446 name="releng-jsf-mapVersionTag"
447 value="HEAD"/>
448 <property
david_williamsa7f68be2007-06-20 02:17:13 +0000449 name="build.distribution"
450 value="wtp" />
451 <property
452 name="build.trial"
453 value="true" />
454
455
456 </ant>
457 </schedule>
458
459 </project>
david_williams42f9b242006-11-27 18:45:14 +0000460
david_williams7888d502007-06-29 06:26:51 +0000461 <project name="wtp-R3.0-S">
david_williams42f9b242006-11-27 18:45:14 +0000462 <!-- Defines where cruise looks for changes, to decide whether to run the build -->
463 <modificationset quietperiod="120">
464 <cvs module="releng" />
465 <cvs module="releng-jsf" />
466 <cvs module="releng.dali" />
david_williams2f3f8432006-12-18 03:18:23 +0000467
david_williams42f9b242006-11-27 18:45:14 +0000468 </modificationset>
469
jlanutiacd84c42007-06-22 13:30:34 +0000470 <schedule interval="${time.VeryVeryLongTime}">
david_williams42f9b242006-11-27 18:45:14 +0000471 <ant
472 antscript="${env.BUILD_HOME}/releng.control/ant.sh"
473 buildfile="cc_project_build.xml"
474 target="Build"
475 useQuiet="false"
476 useLogger="false"
477 savelogdir="${logDir}"
478 usedebug="false"
479 antworkingdir="${env.BUILD_HOME}/releng.control">
480 <property
481 name="buildType"
482 value="S" />
483 <property
484 name="buildId"
david_williams7888d502007-06-29 06:26:51 +0000485 value="3.0M1" />
david_williams42f9b242006-11-27 18:45:14 +0000486 <property
487 name="buildBranch"
david_williams7888d502007-06-29 06:26:51 +0000488 value="R3.0" />
david_williams42f9b242006-11-27 18:45:14 +0000489 <property
490 name="checkoutprojectname"
491 value="${project.name}" />
492
493 <property
494 name="mapVersionTag"
495 value="HEAD" />
496 <property
david_williams59916eb2007-07-01 05:37:21 +0000497 name="releng.dali-mapVersionTag"
498 value="HEAD"/>
499 <property
500 name="releng-jsf-mapVersionTag"
501 value="HEAD"/>
502 <property
david_williams42f9b242006-11-27 18:45:14 +0000503 name="build.distribution"
504 value="wtp" />
david_williams7512e3a2006-12-18 03:34:39 +0000505 <property
506 name="build.pack-all-in-one"
507 value="true" />
david_williams42f9b242006-11-27 18:45:14 +0000508
509 </ant>
510 </schedule>
511
david_williamsa33db8f2006-11-27 23:36:51 +0000512
david_williams42f9b242006-11-27 18:45:14 +0000513 </project>
514
david_williams7888d502007-06-29 06:26:51 +0000515 <project name="retest-wtp-R3.0-S">
david_williamsa7f68be2007-06-20 02:17:13 +0000516 <!-- Defines where cruise looks for changes, to decide whether to run the build -->
517 <modificationset quietperiod="120">
518 <cvs module="releng" />
519 <cvs module="releng-jsf" />
520 <cvs module="releng.dali" />
521
522 </modificationset>
523
524 <schedule interval="${time.VeryVeryLongTime}">
525 <ant
526 antscript="${env.BUILD_HOME}/releng.control/ant.sh"
527 buildfile="cc_project_retest.xml"
528 target="Build"
529 useQuiet="false"
530 useLogger="false"
531 savelogdir="${logDir}"
532 usedebug="false"
533 antworkingdir="${env.BUILD_HOME}/releng.control">
534 <property
535 name="buildType"
536 value="S" />
537 <property
538 name="buildId"
david_williams7888d502007-06-29 06:26:51 +0000539 value="3.0M1" />
david_williamsa7f68be2007-06-20 02:17:13 +0000540 <property
541 name="buildBranch"
david_williams7888d502007-06-29 06:26:51 +0000542 value="R3.0" />
david_williamsa7f68be2007-06-20 02:17:13 +0000543 <property
544 name="checkoutprojectname"
545 value="${project.name}" />
546
547 <property
548 name="mapVersionTag"
549 value="HEAD" />
550 <property
david_williams59916eb2007-07-01 05:37:21 +0000551 name="releng.dali-mapVersionTag"
552 value="HEAD"/>
553 <property
554 name="releng-jsf-mapVersionTag"
555 value="HEAD"/>
556 <property
david_williamsa7f68be2007-06-20 02:17:13 +0000557 name="build.distribution"
558 value="wtp" />
559 <property
560 name="build.pack-all-in-one"
561 value="true" />
562
563 </ant>
564 </schedule>
565
566
567 </project>
568
569
david_williamse3efab52007-02-26 04:09:53 +0000570
571
david_williams7888d502007-06-29 06:26:51 +0000572 <project name="wtp-R3.0-R">
david_williams42f9b242006-11-27 18:45:14 +0000573 <!-- Defines where cruise looks for changes, to decide whether to run the build -->
574 <modificationset quietperiod="120">
575 <cvs module="releng" />
576 <cvs module="releng-jsf" />
577 <cvs module="releng.dali" />
david_williams2f3f8432006-12-18 03:18:23 +0000578
david_williams42f9b242006-11-27 18:45:14 +0000579 </modificationset>
580
david_williams68a2ea32007-06-29 06:33:41 +0000581 <schedule interval="${time.VeryVeryLongTime}">
david_williams42f9b242006-11-27 18:45:14 +0000582 <ant
583 antscript="${env.BUILD_HOME}/releng.control/ant.sh"
584 buildfile="cc_project_build.xml"
585 target="Build"
586 useQuiet="false"
587 useLogger="false"
588 savelogdir="${logDir}"
589 usedebug="false"
590 antworkingdir="${env.BUILD_HOME}/releng.control">
591 <property
592 name="buildType"
593 value="R" />
594 <property
595 name="buildId"
david_williams7888d502007-06-29 06:26:51 +0000596 value="3.0" />
david_williams42f9b242006-11-27 18:45:14 +0000597 <property
598 name="buildBranch"
david_williams7888d502007-06-29 06:26:51 +0000599 value="R3.0" />
david_williams42f9b242006-11-27 18:45:14 +0000600 <property
601 name="checkoutprojectname"
602 value="${project.name}" />
603
604 <property
605 name="mapVersionTag"
606 value="HEAD" />
607 <property
david_williams59916eb2007-07-01 05:37:21 +0000608 name="releng.dali-mapVersionTag"
609 value="HEAD"/>
610 <property
611 name="releng-jsf-mapVersionTag"
612 value="HEAD"/>
613 <property
david_williams42f9b242006-11-27 18:45:14 +0000614 name="build.distribution"
615 value="wtp" />
david_williams7888d502007-06-29 06:26:51 +0000616 </ant>
617 </schedule>
618
619 </project>
620 <project name="retest-wtp-R3.0-R">
621 <!-- Defines where cruise looks for changes, to decide whether to run the build -->
622 <modificationset quietperiod="120">
623 <cvs module="releng" />
624 <cvs module="releng-jsf" />
625 <cvs module="releng.dali" />
626
627 </modificationset>
628
629 <schedule interval="${time.VeryVeryLongTime}">
630 <ant
631 antscript="${env.BUILD_HOME}/releng.control/ant.sh"
632 buildfile="cc_project_retest.xml"
633 target="Build"
634 useQuiet="false"
635 useLogger="false"
636 savelogdir="${logDir}"
637 usedebug="false"
638 antworkingdir="${env.BUILD_HOME}/releng.control">
639 <property
640 name="buildType"
641 value="R" />
642 <property
643 name="buildId"
644 value="3.0" />
645 <property
646 name="buildBranch"
647 value="R3.0" />
648 <property
649 name="checkoutprojectname"
650 value="${project.name}" />
651
652 <property
653 name="mapVersionTag"
654 value="HEAD" />
655 <property
david_williams59916eb2007-07-01 05:37:21 +0000656 name="releng.dali-mapVersionTag"
657 value="HEAD"/>
658 <property
659 name="releng-jsf-mapVersionTag"
660 value="HEAD"/>
661 <property
david_williams7888d502007-06-29 06:26:51 +0000662 name="build.distribution"
663 value="wtp" />
664 <property
665 name="build.pack-all-in-one"
666 value="true" />
667
668 </ant>
669 </schedule>
670
671
672 </project>
673 <project name="wtp-buildTools-R3.0-T">
674 <!-- Defines where cruise looks for changes, to decide whether to run the build -->
675 <modificationset quietperiod="120">
676 <cvs module="releng" />
677 </modificationset>
678
679 <schedule interval="${time.VeryVeryLongTime}">
680 <ant
681 antscript="${env.BUILD_HOME}/releng.control/ant.sh"
682 buildfile="cc_project_build.xml"
683 target="Build"
684 useQuiet="false"
685 useLogger="false"
686 savelogdir="${logDir}"
687 usedebug="false"
688 antworkingdir="${env.BUILD_HOME}/releng.control">
689 <property
690 name="buildType"
691 value="T" />
692 <property
693 name="checkoutprojectname"
694 value="${project.name}" />
695
696 <property
697 name="buildBranch"
698 value="R3.0" />
699
700 <property
701 name="mapVersionTag"
702 value="HEAD" />
703 <property
david_williams59916eb2007-07-01 05:37:21 +0000704 name="releng.dali-mapVersionTag"
705 value="HEAD"/>
706 <property
707 name="releng-jsf-mapVersionTag"
708 value="HEAD"/>
709 <property
david_williams7888d502007-06-29 06:26:51 +0000710 name="build.distribution"
711 value="wtp-buildTools" />
david_williams42f9b242006-11-27 18:45:14 +0000712
713
714 </ant>
715 </schedule>
716
717 </project>
718
david_williams42f9b242006-11-27 18:45:14 +0000719
720</cruisecontrol>
721