| <cruisecontrol> |
| <system> |
| <configuration> |
| <threads |
| count="4"/> |
| </configuration> |
| </system> |
| <!-- |
| Note to be cross-platform, "environment variables" are only |
| appropriate for some variables, e.g. ones we set, since |
| properties are case sensitive, even if the environment variables |
| on your operating system are not, e.g. it will be ${env.Path} |
| not ${env.PATH} on Windows |
| --> |
| <property |
| environment="env" |
| toupper="true"/> |
| <!-- |
| Note: can not quite use "standard properties" pattern, as in ant |
| files, since for CC, it is an error if a property file does not |
| exist. |
| --> |
| <property |
| name="time.tenMinutes" |
| value="600"/> |
| <property |
| name="time.oneHour" |
| value="3600"/> |
| <property |
| name="time.twoHours" |
| value="7200"/> |
| <property |
| name="time.fourHours" |
| value="14400"/> |
| <property |
| name="time.fiveHours" |
| value="18000"/> |
| <property |
| name="time.twelveHours" |
| value="43200"/> |
| <property |
| name="time.twentyFourHours" |
| value="86400"/> |
| <property |
| name="time.fortyEightHours" |
| value="172800"/> |
| <property |
| name="time.veryLongTime" |
| value="31536000"/> |
| <plugin |
| name="log" |
| dir="${env.LOG_DIR}/${project.name}" |
| encoding="ISO-8859-1"/> |
| <plugin |
| name="currentbuildstatuslistener" |
| file="${env.LOG_DIR}/${project.name}/status.txt"/> |
| <!-- |
| remember, our logDir must be same as logdir specified in CC's |
| web.xml file |
| --> |
| <plugin |
| name="ant" |
| antscript="${env.RELENG_CONTROL}/ant_low_priority.sh" |
| buildfile="${env.RELENG_CONTROL}/cc_project_build.xml" |
| target="Build" |
| uselogger="${env.USE_LOGGER}" |
| usequiet="${env.USE_QUIET}" |
| savelogdir="${env.LOG_DIR}/${project.name}" |
| antworkingdir="${env.LOG_DIR}/${project.name}"/> |
| <plugin |
| name="htmlemail" |
| mailhost="localhost" |
| logDir="${env.LOG_DIR}/${project.name}" |
| returnaddress="${env.BUILD_BUILDMASTER_EMAIL}" |
| returnname="${env.BUILD_BUILDMASTER_RETURN_NAME}" |
| skipusers="${env.SKIPUSERS}" |
| subjectprefix="[${env.BUILD_SUBJECT_PREFIX} ${project.name}]" |
| spamwhilebroken="true" |
| failasimportant="false" |
| buildresultsurl="${env.BUILD_RESULT_URL}/${project.name}"> |
| <always |
| address="${env.BUILD_ALWAYS_TO_ADDRESS}"/> |
| </plugin> |
| <plugin |
| name="project" |
| forceBuildNewProject="false" |
| buildafterfailed="false"> |
| <!-- |
| dateformat had to be removed for CC 2.8.0 <dateformat |
| format="yyyy-MM-dd HH:mm '('z')'" /> |
| --> |
| <log |
| dir="${env.LOG_DIR}/${project.name}" |
| encoding="ISO-8859-1"> |
| <merge |
| dir="${env.PROJECT_TESTS}/${project.name}/results/xml"/> |
| <delete |
| every="10" |
| unit="DAY" |
| ignoreSuffix="true"/> |
| <gzip |
| every="5" |
| unit="DAY"/> |
| </log> |
| <listeners> |
| <currentbuildstatuslistener/> |
| </listeners> |
| <publishers> |
| <antpublisher |
| antscript="${env.RELENG_CONTROL}/ant_med_priority.sh" |
| buildfile="${env.RELENG_CONTROL}/cc_copyArtifacts.xml" |
| target="copyArtifacts" |
| usequiet="true" |
| uselogger="false" |
| antWorkingDir="${env.BUILD_HOME}/tmp" |
| saveLogDir="${env.BUILD_HOME}/tmp"> |
| <property |
| name="localArtifactsDirectory" |
| value="${env.PROJECT_ARTIFACTS}/${project.name}"/> |
| </antpublisher> |
| <htmlemail |
| logdir="${env.LOG_DIR}/${project.name}"> |
| <failure |
| address="nitind" |
| reportWhenFixed="true"/> |
| <failure |
| address="eyuen" |
| reportWhenFixed="true"/> |
| <failure |
| address="nhauge" |
| reportWhenFixed="true"/> |
| <failure |
| address="tle" |
| reportWhenFixed="true"/> |
| <failure |
| address="rsrinivasan" |
| reportWhenFixed="true"/> |
| <failure |
| address="nsandonato" |
| reportWhenFixed="true"/> |
| <propertiesmapper |
| file="${env.EMAIL_PROPERTIES}"/> |
| </htmlemail> |
| </publishers> |
| </plugin> |
| <plugin |
| name="cvs" |
| cvsroot=":${env.BUILD_CVS_READ_PROTOCOL}:${env.BUILD_CVS_READ_USER}@${env.BUILD_CVS_SERVER}:${env.BUILD_CVS_ROOT}"/> |
| <!-- |
| Note: projects must be named in the form |
| ${build.distribution}-${buildBranch}-${buildType} Also, please |
| note, the order is somewhat important, too. We order these so |
| the quickest running come first in the list, so they have an |
| opportunity to "get done" before a longer one starts. The next |
| criteria is importance |
| --> |
| <project |
| forceOnly="false" |
| requireModification="false" |
| name="cleanup-artifacts-B"> |
| <modificationset> |
| <!-- http://jira.public.thoughtworks.org/browse/CC-766 --> |
| <alwaysbuild/> |
| </modificationset> |
| <schedule |
| interval="${time.twentyFourHours}"> |
| <exec |
| workingdir="${env.BUILD_HOME}/releng.control" |
| command="${env.BUILD_HOME}/releng.control/cleanupArtifacts.sh"> |
| </exec> |
| </schedule> |
| <!-- |
| need to prevent, or override, default publishers, especially |
| since the ant default antpublisher will result in error, if |
| an ant build hasn't ran! |
| --> |
| <publishers> |
| </publishers> |
| </project> |
| <project |
| forceOnly="true" |
| requireModification="false" |
| name="wtpbuildTools-T3.3.0-I"> |
| <modificationset> |
| <!-- http://jira.public.thoughtworks.org/browse/CC-766 --> |
| <alwaysbuild/> |
| </modificationset> |
| <schedule |
| interval="${time.veryLongTime}"> |
| <ant> |
| <property |
| name="dependencyFileLocation" |
| value="helios/dependencies.properties"/> |
| |
| <property |
| name="buildType" |
| value="I"/> |
| <property |
| name="buildId" |
| value="3.3.0"/> |
| <property |
| name="buildBranch" |
| value="T3.3.0"/> |
| <property |
| name="mapVersionTag" |
| value="HEAD"/> |
| <property |
| name="build.distribution" |
| value="wtpbuildTools"/> |
| </ant> |
| </schedule> |
| </project> |
| |
| <project |
| forceOnly="true" |
| requireModification="true" |
| name="wstfproj-R3.3.0-I"> |
| <modificationset |
| quietperiod="120"> |
| <cvs |
| module="${env.RELENG}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| </modificationset> |
| <schedule |
| interval="${time.oneHour}"> |
| <ant> |
| <property |
| name="dependencyFileLocation" |
| value="helios/dependencies.properties"/> |
| |
| <property |
| name="buildType" |
| value="I"/> |
| <property |
| name="buildId" |
| value="3.3.0"/> |
| <property |
| name="buildBranch" |
| value="R3.3.0"/> |
| <property |
| name="mapVersionTag" |
| value="HEAD"/> |
| <property |
| name="build.distribution" |
| value="wstfproj"/> |
| </ant> |
| </schedule> |
| </project> |
| |
| <project |
| forceOnly="true" |
| requireModification="true" |
| name="wtpcap-C3.3.0-I"> |
| <modificationset |
| quietperiod="120"> |
| <cvs |
| module="${env.RELENG}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| </modificationset> |
| <schedule |
| interval="${time.oneHour}"> |
| <ant> |
| <property |
| name="dependencyFileLocation" |
| value="helios/dependencies.properties"/> |
| |
| <property |
| name="buildType" |
| value="I"/> |
| <property |
| name="buildId" |
| value="C3.3.0"/> |
| <property |
| name="buildBranch" |
| value="C3.3.0"/> |
| <property |
| name="mapVersionTag" |
| value="HEAD"/> |
| <property |
| name="build.distribution" |
| value="wtpcap"/> |
| </ant> |
| </schedule> |
| </project> |
| |
| |
| <project |
| forceOnly="false" |
| requireModification="true" |
| name="jsdt-R1.4.0-I"> |
| <modificationset |
| quietperiod="120"> |
| <cvs |
| module="${env.RELENGJSDT}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| </modificationset> |
| <schedule |
| interval="${time.oneHour}"> |
| <ant> |
| <property |
| name="dependencyFileLocation" |
| value="juno/dependencies.properties"/> |
| |
| <property |
| name="buildType" |
| value="I"/> |
| <property |
| name="buildBranch" |
| value="R1.4.0"/> |
| <property |
| name="buildId" |
| value="1.4.0"/> |
| <property |
| name="mapVersionTag" |
| value="HEAD"/> |
| <property |
| name="releng.jsdt-mapVersionTag" |
| value="HEAD"/> |
| <property |
| name="build.distribution" |
| value="jsdt"/> |
| <!-- |
| remember to remove (comment out) these "skips" as we |
| approach a test or declared build |
| |
| <property |
| name="SKIP_JAR_SIGNING" |
| value="true"/> |
| <property |
| name="normalizeJarFiles" |
| value="false"/> |
| --> |
| </ant> |
| </schedule> |
| </project> |
| <project |
| forceOnly="false" |
| requireModification="true" |
| name="jsdt-R1.2.1-M"> |
| <modificationset |
| quietperiod="120"> |
| <cvs |
| tag="R3_2_maintenance" |
| module="${env.RELENGJSDT}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| </modificationset> |
| <schedule |
| interval="${time.oneHour}"> |
| <ant> |
| <property |
| name="dependencyFileLocation" |
| value="helios/dependencies.properties"/> |
| |
| <property |
| name="buildType" |
| value="M"/> |
| <property |
| name="buildBranch" |
| value="R1.2.1"/> |
| <property |
| name="buildId" |
| value="1.2.1"/> |
| <property |
| name="mapVersionTag" |
| value="R3_2_maintenance"/> |
| <property |
| name="releng.jsdt-mapVersionTag" |
| value="R3_2_maintenance"/> |
| <property |
| name="build.distribution" |
| value="jsdt"/> |
| <!-- |
| remember to remove (comment out) these "skips" as we |
| approach a test or declared build |
| |
| <property |
| name="SKIP_JAR_SIGNING" |
| value="true"/> |
| <property |
| name="normalizeJarFiles" |
| value="false"/> |
| --> |
| </ant> |
| </schedule> |
| </project> |
| |
| <project |
| forceOnly="true" |
| forceBuildNewProject="false" |
| requireModification="true" |
| name="patches-R1.5.5-P"> |
| <modificationset> |
| <!-- http://jira.public.thoughtworks.org/browse/CC-766 --> |
| <alwaysbuild/> |
| </modificationset> |
| <schedule |
| interval="${time.veryLongTime}"> |
| <ant |
| antscript="${env.RELENG_CONTROL}/ant_med_priority.sh"> |
| <property |
| name="passBuildEvenIfFailedTests" |
| value="true"/> |
| <property |
| name="buildType" |
| value="P"/> |
| <property |
| name="buildBranch" |
| value="R1.5.5"/> |
| <property |
| name="mapVersionTag" |
| value="R1_5_5_patches"/> |
| <property |
| name="build.distribution" |
| value="patches"/> |
| </ant> |
| </schedule> |
| <publishers> |
| <antpublisher |
| antscript="${env.RELENG_CONTROL}/ant_med_priority.sh" |
| buildfile="${env.RELENG_CONTROL}/cc_copyArtifacts.xml" |
| target="copyArtifacts" |
| usequiet="true" |
| uselogger="false" |
| antWorkingDir="${env.BUILD_HOME}/tmp" |
| saveLogDir="${env.BUILD_HOME}/tmp"> |
| <property |
| name="localArtifactsDirectory" |
| value="${env.PROJECT_ARTIFACTS}/${project.name}"/> |
| </antpublisher> |
| <htmlemail |
| skipusers="true" |
| logdir="${env.BUILD_HOME}/tmp"> |
| <propertiesmapper |
| file=""/> |
| </htmlemail> |
| </publishers> |
| </project> |
| <project |
| forceOnly="true" |
| forceBuildNewProject="false" |
| requireModification="true" |
| name="patches-R3.0.5-P"> |
| <modificationset> |
| <!-- http://jira.public.thoughtworks.org/browse/CC-766 --> |
| <alwaysbuild/> |
| </modificationset> |
| <schedule |
| interval="${time.veryLongTime}"> |
| <ant |
| antscript="${env.RELENG_CONTROL}/ant_med_priority.sh"> |
| <property |
| name="passBuildEvenIfFailedTests" |
| value="true"/> |
| <property |
| name="buildType" |
| value="P"/> |
| <property |
| name="buildBranch" |
| value="R3.0.5"/> |
| <property |
| name="mapVersionTag" |
| value="R3_0_5_patches"/> |
| <property |
| name="releng.dali-mapVersionTag" |
| value="R3_0_5_patches"/> |
| <property |
| name="releng.jsf-mapVersionTag" |
| value="R3_0_5_patches"/> |
| <property |
| name="build.distribution" |
| value="patches3"/> |
| </ant> |
| </schedule> |
| <publishers> |
| <antpublisher |
| antscript="${env.RELENG_CONTROL}/ant_med_priority.sh" |
| buildfile="${env.RELENG_CONTROL}/cc_copyArtifacts.xml" |
| target="copyArtifacts" |
| usequiet="true" |
| uselogger="false" |
| antWorkingDir="${env.BUILD_HOME}/tmp" |
| saveLogDir="${env.BUILD_HOME}/tmp"> |
| <property |
| name="localArtifactsDirectory" |
| value="${env.PROJECT_ARTIFACTS}/${project.name}"/> |
| </antpublisher> |
| <htmlemail |
| skipusers="true" |
| logdir="${env.BUILD_HOME}/tmp"> |
| <propertiesmapper |
| file=""/> |
| </htmlemail> |
| </publishers> |
| </project> |
| |
| <project |
| forceOnly="true" |
| forceBuildNewProject="false" |
| requireModification="true" |
| name="patches-R3.2.5-P"> |
| <modificationset> |
| <!-- http://jira.public.thoughtworks.org/browse/CC-766 --> |
| <alwaysbuild/> |
| </modificationset> |
| <schedule |
| interval="${time.veryLongTime}"> |
| <ant |
| antscript="${env.RELENG_CONTROL}/ant_high_priority.sh"> |
| <property |
| name="dependencyFileLocation" |
| value="helios/dependencies.properties"/> |
| |
| <property |
| name="passBuildEvenIfFailedTests" |
| value="true"/> |
| <property |
| name="buildType" |
| value="P"/> |
| <property |
| name="buildBranch" |
| value="R3.2.5"/> |
| <property |
| name="buildId" |
| value="3.2.5"/> |
| <property |
| name="mapVersionTag" |
| value="R3_2_5_patches"/> |
| <property |
| name="releng.dali-mapVersionTag" |
| value="R2_3_5_patches"/> |
| <property |
| name="releng.jsf-mapVersionTag" |
| value="R3_2_5_patches"/> |
| |
| <property |
| name="releng.jsdt-mapVersionTag" |
| value="R3_2_5_patches"/> |
| |
| <property |
| name="build.distribution" |
| value="patches32x"/> |
| </ant> |
| </schedule> |
| <publishers> |
| <antpublisher |
| antscript="${env.RELENG_CONTROL}/ant_med_priority.sh" |
| buildfile="${env.RELENG_CONTROL}/cc_copyArtifacts.xml" |
| target="copyArtifacts" |
| usequiet="true" |
| uselogger="false" |
| antWorkingDir="${env.BUILD_HOME}/tmp" |
| saveLogDir="${env.BUILD_HOME}/tmp"> |
| <property |
| name="localArtifactsDirectory" |
| value="${env.PROJECT_ARTIFACTS}/${project.name}"/> |
| </antpublisher> |
| <htmlemail |
| skipusers="true" |
| logdir="${env.BUILD_HOME}/tmp"> |
| <propertiesmapper |
| file=""/> |
| </htmlemail> |
| </publishers> |
| </project> |
| |
| <project |
| forceOnly="true" |
| forceBuildNewProject="false" |
| requireModification="true" |
| name="patches-R3.2.3-P"> |
| <modificationset> |
| <!-- http://jira.public.thoughtworks.org/browse/CC-766 --> |
| <alwaysbuild/> |
| </modificationset> |
| <schedule |
| interval="${time.veryLongTime}"> |
| <ant |
| antscript="${env.RELENG_CONTROL}/ant_high_priority.sh"> |
| <property |
| name="dependencyFileLocation" |
| value="helios/dependencies.properties"/> |
| |
| <property |
| name="passBuildEvenIfFailedTests" |
| value="true"/> |
| <property |
| name="buildType" |
| value="P"/> |
| <property |
| name="buildBranch" |
| value="R3.2.3"/> |
| <property |
| name="buildId" |
| value="3.2.3"/> |
| <property |
| name="mapVersionTag" |
| value="R3_2_3_patches"/> |
| <property |
| name="releng.dali-mapVersionTag" |
| value="R2_3_3_patches"/> |
| <property |
| name="releng.jsf-mapVersionTag" |
| value="R3_2_3_patches"/> |
| |
| <property |
| name="releng.jsdt-mapVersionTag" |
| value="R3_2_3_patches"/> |
| |
| <property |
| name="build.distribution" |
| value="patches32x"/> |
| </ant> |
| </schedule> |
| <publishers> |
| <antpublisher |
| antscript="${env.RELENG_CONTROL}/ant_med_priority.sh" |
| buildfile="${env.RELENG_CONTROL}/cc_copyArtifacts.xml" |
| target="copyArtifacts" |
| usequiet="true" |
| uselogger="false" |
| antWorkingDir="${env.BUILD_HOME}/tmp" |
| saveLogDir="${env.BUILD_HOME}/tmp"> |
| <property |
| name="localArtifactsDirectory" |
| value="${env.PROJECT_ARTIFACTS}/${project.name}"/> |
| </antpublisher> |
| <htmlemail |
| skipusers="true" |
| logdir="${env.BUILD_HOME}/tmp"> |
| <propertiesmapper |
| file=""/> |
| </htmlemail> |
| </publishers> |
| </project> |
| |
| <project |
| forceOnly="true" |
| forceBuildNewProject="false" |
| requireModification="true" |
| name="patches-R3.3.1-P"> |
| <modificationset> |
| <!-- http://jira.public.thoughtworks.org/browse/CC-766 --> |
| <alwaysbuild/> |
| </modificationset> |
| <schedule |
| interval="${time.veryLongTime}"> |
| <ant |
| antscript="${env.RELENG_CONTROL}/ant_high_priority.sh"> |
| <property |
| name="dependencyFileLocation" |
| value="indigo/dependencies.properties"/> |
| |
| <property |
| name="passBuildEvenIfFailedTests" |
| value="true"/> |
| <property |
| name="buildType" |
| value="P"/> |
| <property |
| name="buildId" |
| value="3.3.1"/> |
| <property |
| name="buildBranch" |
| value="R3.3.1"/> |
| <property |
| name="mapVersionTag" |
| value="R3_3_1_patches"/> |
| <property |
| name="releng.dali-mapVersionTag" |
| value="R3_0_1_patches"/> |
| <property |
| name="releng.jsf-mapVersionTag" |
| value="R3_3_1_patches"/> |
| <property |
| name="releng.jsdt-mapVersionTag" |
| value="R3_3_1_patches"/> |
| |
| <property |
| name="build.distribution" |
| value="patches32x"/> |
| </ant> |
| </schedule> |
| <publishers> |
| <antpublisher |
| antscript="${env.RELENG_CONTROL}/ant_med_priority.sh" |
| buildfile="${env.RELENG_CONTROL}/cc_copyArtifacts.xml" |
| target="copyArtifacts" |
| usequiet="true" |
| uselogger="false" |
| antWorkingDir="${env.BUILD_HOME}/tmp" |
| saveLogDir="${env.BUILD_HOME}/tmp"> |
| <property |
| name="localArtifactsDirectory" |
| value="${env.PROJECT_ARTIFACTS}/${project.name}"/> |
| </antpublisher> |
| <htmlemail |
| skipusers="true" |
| logdir="${env.BUILD_HOME}/tmp"> |
| <propertiesmapper |
| file=""/> |
| </htmlemail> |
| </publishers> |
| </project> |
| |
| <project |
| forceOnly="false" |
| requireModification="true" |
| name="wtp-R3.4.0-I"> |
| <modificationset |
| quietperiod="120"> |
| <cvs |
| module="${env.RELENGCOMMON}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| <cvs |
| module="${env.RELENGEJBTOOLS}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| <cvs |
| module="${env.RELENGJEETOOLS}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| <cvs |
| module="${env.RELENGSERVERTOOLS}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| <cvs |
| module="${env.RELENGSOURCEEDITING}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| <cvs |
| module="${env.RELENGJSDT}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| <cvs |
| module="${env.RELENGWEBSERVICES}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| <cvs |
| module="${env.RELENGJSF}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| <cvs |
| module="${env.RELENGDALI}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| </modificationset> |
| <schedule |
| interval="${time.twentyFourHours}"> |
| <ant |
| antscript="${env.RELENG_CONTROL}/ant_low_priority.sh"> |
| <property |
| name="dependencyFileLocation" |
| value="juno/dependencies.properties"/> |
| |
| <property |
| name="buildType" |
| value="I"/> |
| <property |
| name="buildId" |
| value="3.4.0"/> |
| <property |
| name="buildBranch" |
| value="R3.4.0"/> |
| <property |
| name="mapVersionTag" |
| value="HEAD"/> |
| <property |
| name="releng.dali-mapVersionTag" |
| value="HEAD"/> |
| <property |
| name="releng.jsf-mapVersionTag" |
| value="HEAD"/> |
| <property |
| name="releng.jsdt-mapVersionTag" |
| value="HEAD"/> |
| <property |
| name="build.distribution" |
| value="wtp"/> |
| |
| </ant> |
| </schedule> |
| </project> |
| <project |
| forceOnly="false" |
| requireModification="true" |
| name="wtp4x-R3.4.0-I"> |
| <modificationset |
| quietperiod="120"> |
| <cvs |
| module="${env.RELENGCOMMON}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| <cvs |
| module="${env.RELENGEJBTOOLS}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| <cvs |
| module="${env.RELENGJEETOOLS}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| <cvs |
| module="${env.RELENGSERVERTOOLS}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| <cvs |
| module="${env.RELENGSOURCEEDITING}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| <cvs |
| module="${env.RELENGJSDT}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| <cvs |
| module="${env.RELENGWEBSERVICES}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| <cvs |
| module="${env.RELENGJSF}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| <cvs |
| module="${env.RELENGDALI}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| </modificationset> |
| <schedule |
| interval="${time.oneHour}"> |
| <ant |
| antscript="${env.RELENG_CONTROL}/ant_med_priority.sh"> |
| <property |
| name="dependencyFileLocation" |
| value="juno/dependencies.properties"/> |
| |
| <property |
| name="buildType" |
| value="I"/> |
| <property |
| name="buildId" |
| value="3.4.0"/> |
| <property |
| name="buildBranch" |
| value="R3.4.0"/> |
| <property |
| name="mapVersionTag" |
| value="HEAD"/> |
| <property |
| name="releng.dali-mapVersionTag" |
| value="HEAD"/> |
| <property |
| name="releng.jsf-mapVersionTag" |
| value="HEAD"/> |
| <property |
| name="releng.jsdt-mapVersionTag" |
| value="HEAD"/> |
| <property |
| name="build.distribution" |
| value="wtp4x"/> |
| <!-- |
| since we are not building anything for distribution in this job, |
| we are testing compilation only, |
| we can skip signing and normalization. |
| But, that throughs off comparator test (makes all look "different" since |
| differs by 3 files. Makes it hard to see if there are others differences. |
| So, we'll sign, for now. |
| |
| <property |
| name="SKIP_JAR_SIGNING" |
| value="true"/> |
| <property |
| name="normalizeJarFiles" |
| value="false"/> |
| --> |
| </ant> |
| </schedule> |
| </project> |
| <project |
| forceOnly="true" |
| requireModification="true" |
| name="wtp-R3.4.0-N"> |
| <modificationset> |
| <!-- http://jira.public.thoughtworks.org/browse/CC-766 --> |
| <alwaysbuild/> |
| </modificationset> |
| <schedule |
| interval="${time.veryLongTime}"> |
| <ant |
| antscript="${env.RELENG_CONTROL}/ant_low_priority.sh"> |
| <property |
| name="dependencyFileLocation" |
| value="juno/dependencies.properties"/> |
| |
| <property |
| name="buildType" |
| value="N"/> |
| <!-- in this context, buildBranch is simply a label --> |
| <property |
| name="buildBranch" |
| value="R3.4.0"/> |
| <property |
| name="buildId" |
| value="3.4.0"/> |
| <property |
| name="mapVersionTag" |
| value="HEAD"/> |
| <property |
| name="releng.dali-mapVersionTag" |
| value="HEAD"/> |
| <property |
| name="releng.jsf-mapVersionTag" |
| value="HEAD"/> |
| <property |
| name="releng.jsdt-mapVersionTag" |
| value="HEAD"/> |
| <property |
| name="build.distribution" |
| value="wtp"/> |
| <property |
| name="build.donottagmaps" |
| value="true"/> |
| |
| <property |
| name="SKIP_JAR_SIGNING" |
| value="true"/> |
| <property |
| name="normalizeJarFiles" |
| value="false"/> |
| |
| </ant> |
| </schedule> |
| </project> |
| <project |
| name="dali-R3.1.0-I" |
| requireModification="true" |
| forceOnly="true"> |
| <modificationset |
| quietperiod="120"> |
| <cvs |
| module="${env.RELENGDALI}" |
| reallyquiet="${env.CVS_REALLY_QUIET}"/> |
| </modificationset> |
| <schedule |
| interval="${time.oneHour}"> |
| <ant |
| antscript="${env.RELENG_CONTROL}/ant_med_priority.sh"> |
| <property |
| name="dependencyFileLocation" |
| value="indigo/dependencies.properties"/> |
| |
| <property |
| name="buildType" |
| value="I" /> |
| <property |
| name="buildId" |
| value="3.1.0" /> |
| <property |
| name="buildBranch" |
| value="R3.1.0" /> |
| <property |
| name="mapVersionTag" |
| value="R3_3_1_maintenance_dali" /> |
| <property |
| name="releng.dali-mapVersionTag" |
| value="HEAD" /> |
| |
| <property |
| name="build.distribution" |
| value="dali" /> |
| <!-- |
| remember to remove (comment out) these "skips" as we |
| approach a test or declared build |
| |
| <property |
| name="SKIP_JAR_SIGNING" |
| value="true"/> |
| <property |
| name="normalizeJarFiles" |
| value="false"/> |
| --> |
| </ant> |
| </schedule> |
| </project> |
| </cruisecontrol> |