Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti2013-06-26 16:09:08 +0000
committerSilenio Quarti2013-06-26 16:09:08 +0000
commit0d2350aba3c0396ca306570a642f48fdb706d8d2 (patch)
tree5222fa0e404b04eebb5568a4b22c092aef6ecbaf
parent2f4d8303f1f56891e0f61a613be3f67edc031ba3 (diff)
downloadrt.equinox.framework-0d2350aba3c0396ca306570a642f48fdb706d8d2.tar.gz
rt.equinox.framework-0d2350aba3c0396ca306570a642f48fdb706d8d2.tar.xz
rt.equinox.framework-0d2350aba3c0396ca306570a642f48fdb706d8d2.zip
update keyfile in build script
-rw-r--r--releng/org.eclipse.equinox.launcher.releng/build.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/releng/org.eclipse.equinox.launcher.releng/build.xml b/releng/org.eclipse.equinox.launcher.releng/build.xml
index 912e01902..568899dc4 100644
--- a/releng/org.eclipse.equinox.launcher.releng/build.xml
+++ b/releng/org.eclipse.equinox.launcher.releng/build.xml
@@ -11,7 +11,11 @@
<project name="Launcher Build" basedir="." default="build">
<property name="gitTag" value="master" />
- <property name="keyfile" value="C:\BUILD\ssh\swtbuild_dsa_private" />
+ <target name="init_keyfile">
+ <condition property="keyfile" value="C:\BUILD\ssh\swtbuild_dsa_private" else="/var/lib/hudson/swt/swtbuild_dsa_private">
+ <os family="windows"/>
+ </condition>
+ </target>
<available file="${basedir}/launcher.properties" property="launcherProperties" value="${basedir}/launcher.properties" />
@@ -142,7 +146,7 @@
<delete dir="${tmpdir}"/>
</target>
- <target name="buildRemote" if="remote">
+ <target name="buildRemote" if="remote" depends="init_keyfile">
<echo message="Machine: ${machine}" />
<property name="remotebuilddir" value="~/build"/>
<property name="remotetmpdir" value="${remotebuilddir}/${fragmentFolder}.${gitTag}"/>

Back to the top