diff --git a/releng.control/cc_config.xml b/releng.control/cc_config.xml index 85df54d3586c3d177229f9ca604037098d094fdf..0112daba8673dc290582ec93665ce0ccbb450dad 100644 --- a/releng.control/cc_config.xml +++ b/releng.control/cc_config.xml @@ -358,6 +358,45 @@ </project> + <project name="wtp-buildTools-R2.0-T"> + <!-- Defines where cruise looks for changes, to decide whether to run the build --> + <modificationset quietperiod="120"> + <cvs module="releng" /> + </modificationset> + + <schedule interval="${time.VeryVeryLongTime}"> + <ant + antscript="${env.BUILD_HOME}/releng.control/ant.sh" + buildfile="cc_project_build.xml" + target="Build" + useQuiet="false" + useLogger="false" + savelogdir="${logDir}" + usedebug="false" + antworkingdir="${env.BUILD_HOME}/releng.control"> + <property + name="buildType" + value="T" /> + <property + name="checkoutprojectname" + value="${project.name}" /> + + <property + name="buildBranch" + value="R2.0" /> + + <property + name="mapVersionTag" + value="HEAD" /> + <property + name="build.distribution" + value="wtp-buildTools" /> + + + </ant> + </schedule> + + </project> <project name="wtp-thirdparty-R2.0-T"> <!-- Defines where cruise looks for changes, to decide whether to run the build --> diff --git a/releng.control/checkout.xml b/releng.control/checkout.xml index 939435c87489568bd83f6ce989920e0a6c39e351..a8172c13796b2e939819841885be953e3b0b5e48 100644 --- a/releng.control/checkout.xml +++ b/releng.control/checkout.xml @@ -112,7 +112,13 @@ dest="${codir}" tag="HEAD" /> </target> - + <target name="wtp-buildTools-R2.0-T"> + <cvs quiet="true" + cvsRoot="${mapCvsRoot}" + package="releng" + dest="${codir}" + tag="HEAD" /> + </target>