Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
Diffstat (limited to 'releng')
-rw-r--r--releng/org.eclipse.equinox.launcher.releng/build.xml8
-rw-r--r--releng/org.eclipse.equinox.launcher.releng/launcher.properties15
2 files changed, 22 insertions, 1 deletions
diff --git a/releng/org.eclipse.equinox.launcher.releng/build.xml b/releng/org.eclipse.equinox.launcher.releng/build.xml
index 87f499f63..629d4fa67 100644
--- a/releng/org.eclipse.equinox.launcher.releng/build.xml
+++ b/releng/org.eclipse.equinox.launcher.releng/build.xml
@@ -17,6 +17,8 @@
<property name="cvsLauncherBinaries" value="org.eclipse.equinox/framework/releng/org.eclipse.equinox.launcher.binaries" />
<property name="cvsTag" value="HEAD" />
+ <available file="${basedir}/launcher.properties" property="launcherProperties" value="${basedir}/launcher.properties" />
+
<!-- Macro for execing scp -->
<macrodef name="SCP">
<attribute name="dir" />
@@ -168,7 +170,11 @@
</condition>
</target>
- <target name="initProperties" >
+ <target name="loadProperties" if="launcherProperties" >
+ <propery file="${launcherProperties}" />
+ </target>
+
+ <target name="initProperties" depends="loadProperties" >
<property name="ws" value="${env.ws}"/>
<property name="os" value="${env.os}" />
<property name="arch" value="${env.arch}" />
diff --git a/releng/org.eclipse.equinox.launcher.releng/launcher.properties b/releng/org.eclipse.equinox.launcher.releng/launcher.properties
new file mode 100644
index 000000000..cf323f6fb
--- /dev/null
+++ b/releng/org.eclipse.equinox.launcher.releng/launcher.properties
@@ -0,0 +1,15 @@
+#This file should specify properties required by the build.xml script
+#Values here are examples only using build.eclipse.org
+
+#list of machine to do the compilation on: m_${os}.${arch}
+m_linux.x86_64=build.eclipse.org
+
+#list of paths to a Java SDK on each of the machines: j_${os}.${arch}
+# value is -javaHome /path/to/jdk or -java relative/path/to/jdk
+j_linux.x86_64=-javaHome /shared/common/jdk-1.6.0_10
+
+#user names to use on each of the machines if different from the user running hudson, u_${os}.${arch}
+u_linux.x86_64=aniefer
+
+#location to scp the binary results to
+resultsBaseFolder=build.eclipse.org:/shared/eclipse/equinox/results \ No newline at end of file

Back to the top