1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-19 06:05:56 +02:00

[283482] Provide execution environments for nightly builds (CDC-1.1, J2SE-1.4, J2SE-1.5)

This commit is contained in:
Martin Oberhuber 2009-07-16 18:40:02 +00:00
parent 8593b03b10
commit 461d502774

View file

@ -59,6 +59,14 @@ if [ "$3" != "" ]; then
fi
rm -rf "${buildDirectory}"
#default value of the bootclasspath attribute used in ant javac calls.
bootclasspath="/shared/dsdp/JDKs/win32/j2sdk1.4.2_19/jre/lib/rt.jar:/shared/dsdp/JDKs/j2sdk1.4.2_19/jre/lib/jsse.jar"
bootclasspath_15="/shared/common/jdk-1.5.0_16/jre/lib/rt.jar"
#bootclasspath_16="$builderDir/jdk/win32_16/jdk6/jre/lib/rt.jar"
#bootclasspath_foundation="/shared/common/Java_ME_platform_SDK_3.0_EA/runtimes/cdc-hi/lib/rt.jar"
bootclasspath_foundation11="/shared/dsdp/JDKs/win32/j9_cdc11/lib/jclFoundation11/classes.zip"
command="java -cp ${basebuilder}/plugins/org.eclipse.equinox.launcher.jar org.eclipse.core.launcher.Main "
command="$command -application org.eclipse.ant.core.antRunner "
command="$command -buildfile ${pdeBuild}/scripts/build.xml "
@ -77,6 +85,10 @@ if [ "$buildType" = "N" ]; then
command="$command -DfetchTag=HEAD "
fi
command="$command -DdoPublish=true "
command="$command -Dbootclasspath=${bootclasspath} "
command="$command -DJ2SE-1.4=${bootclasspath} "
command="$command -DJ2SE-1.5=${bootclasspath_15} "
command="$command -DCDC-1.1/Foundation-1.1=${bootclasspath_foundation11} "
#command="$command postBuild "
echo "$command"