Skip to content
Snippets Groups Projects
Commit 2f53d7b1 authored by david_williams's avatar david_williams
Browse files

285383 need a Helios build stream

parent f23e0f06
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env bash
#
# remember to leave no slashes on commonVariations in source command,
# so that users path is used to find it (first). But, path on
# commonComputedVariables means we expect to execute only our
# version
if [ -z $BUILD_INITIALIZED ]
then
# if releng_control not set, we assume we are already in releng_control directory
if [ -z $RELENG_CONTROL ]
then
RELENG_CONROL=`pwd`
fi
pushd .
cd ${RELENG_CONTROL}
source commonVariations.shsource
source ${RELENG_CONTROL}/commonComputedVariables.shsource
popd
fi
export DEP_DIR=helios
echo "Running ant at priority +3"
exec nice --adjustment 10 "${RELENG_CONTROL}/ant.sh" "$@"
...@@ -899,4 +899,71 @@ ...@@ -899,4 +899,71 @@
</ant> </ant>
</schedule> </schedule>
</project> </project>
<project
forceOnly="false"
requireModification="true"
name="wtp-R3.3-I">
<modificationset
quietperiod="120">
<cvs
module="${env.RELENGCOMMON}"
reallyquiet="${env.CVS_QUIET}"/>
<cvs
module="${env.RELENGEJBTOOLS}"
reallyquiet="${env.CVS_QUIET}"/>
<cvs
module="${env.RELENGJEETOOLS}"
reallyquiet="${env.CVS_QUIET}"/>
<cvs
module="${env.RELENGSERVERTOOLS}"
reallyquiet="${env.CVS_QUIET}"/>
<cvs
module="${env.RELENGSOURCEEDITING}"
reallyquiet="${env.CVS_QUIET}"/>
<cvs
module="${env.RELENGWEBSERVICES}"
reallyquiet="${env.CVS_QUIET}"/>
<cvs
module="${env.RELENGJSF}"
reallyquiet="${env.CVS_QUIET}"/>
<cvs
module="${env.RELENGDALI}"
reallyquiet="${env.CVS_QUIET}"/>
</modificationset>
<schedule
interval="${time.twentyFourHours}">
<ant
antscript="${env.RELENG_CONTROL}/ant_low_priority_helios.sh">
<property
name="buildType"
value="I"/>
<property
name="buildId"
value="3.2I"/>
<property
name="buildBranch"
value="R3.2"/>
<property
name="mapVersionTag"
value="HEAD"/>
<property
name="releng.dali-mapVersionTag"
value="HEAD"/>
<property
name="releng.jsf-mapVersionTag"
value="HEAD"/>
<property
name="build.distribution"
value="wtp"/>
<!-- remember to remove 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> </cruisecontrol>
\ No newline at end of file
...@@ -30,10 +30,14 @@ ...@@ -30,10 +30,14 @@
name="buildTargets" name="buildTargets"
value="${wtp.builder.home}/scripts/build/runbuild.xml"/> value="${wtp.builder.home}/scripts/build/runbuild.xml"/>
<!-- for this distribution, dependencies come from releng --> <!-- for this distribution, dependencies come from releng.
assume no subdirectory, if not otherwise set (bug 285383).
-->
<property name="env.DEP_DIR" value="" />
<property <property
name="dependency.properties" name="dependency.properties"
value="${buildDirectory}/maps/${env.RELENG}/maps/dependencies.properties"/> value="${buildDirectory}/maps/${env.RELENG}/${env.DEP_DIR}/maps/dependencies.properties"/>
<!-- calling label.xml to createg label.properties file --> <!-- calling label.xml to createg label.properties file -->
<ant <ant
......
...@@ -85,8 +85,14 @@ ...@@ -85,8 +85,14 @@
testManifestFileName: name of xml file containing testManifestFileName: name of xml file containing
descriptions of zip types and log files descriptions of zip types and log files
--> -->
<!-- for this distribution, dependencies come from releng.
assume no subdirectory, if not otherwise set (bug 285383).
-->
<property name="env.DEP_DIR" value="" />
<property <property
file="${buildDirectory}/maps/${env.RELENG}/maps/dependencies.properties"/> name="dependency.properties"
value="${buildDirectory}/maps/${env.RELENG}/${env.DEP_DIR}/maps/dependencies.properties"/>
<!-- create tables of test plugin compiles first --> <!-- create tables of test plugin compiles first -->
<antcall <antcall
......
...@@ -93,9 +93,14 @@ ...@@ -93,9 +93,14 @@
<ant <ant
antfile="${test.component.dir}/testdependency.xml" antfile="${test.component.dir}/testdependency.xml"
target="get"> target="get">
<property <!-- for this distribution, dependencies come from releng.
name="dependency.properties" assume no subdirectory, if not otherwise set (bug 285383).
value="${buildDirectory}/maps/${env.RELENG}/maps/dependencies.properties"/> -->
<property name="env.DEP_DIR" value="" />
<property
name="dependency.properties"
value="${buildDirectory}/maps/${env.RELENG}/${env.DEP_DIR}/maps/dependencies.properties"/>
<property <property
name="base.install.dir" name="base.install.dir"
value="${testRoot}"/> value="${testRoot}"/>
......
...@@ -43,17 +43,27 @@ ...@@ -43,17 +43,27 @@
dir="${testRoot}"/> dir="${testRoot}"/>
<antcall <antcall
target="getReleng"/> target="getReleng"/>
<!-- for this distribution, dependencies come from releng.
assume no subdirectory, if not otherwise set (bug 285383).
-->
<property name="env.DEP_DIR" value="" />
<fail <fail
message="Required file does not exist: ${env.PROJECT_BUILDERS}/${projectname}/${env.RELENG}/maps/dependencies.properties"> message="Required file does not exist: ${env.PROJECT_BUILDERS}/${projectname}/${env.RELENG}/${env.DEP_DIR}/maps/dependencies.properties">
<condition> <condition>
<not> <not>
<available <available
file="${env.PROJECT_BUILDERS}/${projectname}/${env.RELENG}/maps/dependencies.properties"/> file="${env.PROJECT_BUILDERS}/${projectname}/${env.RELENG}/${env.DEP_DIR}/maps/dependencies.properties"/>
</not> </not>
</condition> </condition>
</fail> </fail>
<property <property
file="${env.PROJECT_BUILDERS}/${projectname}/${env.RELENG}/maps/dependencies.properties"/> name="dependency.properties"
value="${buildDirectory}/maps/${env.RELENG}/${env.DEP_DIR}/maps/dependencies.properties"/>
<antcall <antcall
target="getDependencies"/> target="getDependencies"/>
<antcall <antcall
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment