Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
authorAndrew Niefer2011-09-01 18:01:06 +0000
committerAndrew Niefer2011-09-01 18:01:06 +0000
commit5b7faaf85cbc840177816194990383817191817d (patch)
tree725e2f7c6bbe6537bc8dcc9fc578b6c3fa4add4f /releng
parent899edff820cf8c294df7b8c0e5c910b8eaa6cd29 (diff)
downloadrt.equinox.framework-5b7faaf85cbc840177816194990383817191817d.tar.gz
rt.equinox.framework-5b7faaf85cbc840177816194990383817191817d.tar.xz
rt.equinox.framework-5b7faaf85cbc840177816194990383817191817d.zip
Bug 350102 - Update launcher releng scripts to support moving to git
Diffstat (limited to 'releng')
-rw-r--r--releng/org.eclipse.equinox.launcher.releng/build.xml15
1 files changed, 13 insertions, 2 deletions
diff --git a/releng/org.eclipse.equinox.launcher.releng/build.xml b/releng/org.eclipse.equinox.launcher.releng/build.xml
index ef3130e39..eca9efa1b 100644
--- a/releng/org.eclipse.equinox.launcher.releng/build.xml
+++ b/releng/org.eclipse.equinox.launcher.releng/build.xml
@@ -343,6 +343,12 @@
<condition property="javaHome" value="${j_win32}" else="${java.home}" >
<isset property="j_win32"/>
</condition>
+
+ <mkdir dir="${basedir}/${os}.${ws}.${arch}/library" />
+ <copy todir="${basedir}/${os}.${ws}.${arch}/library" >
+ <fileset dir="${localGitClone}/bundles/org.eclipse.equinox.executable/library" includes="**" />
+ </copy>
+
<antcall target="buildConfig" />
</target>
@@ -354,7 +360,9 @@
<condition property="sshUser" value="-l ${userName}" else="" >
<isset property="userName" />
</condition>
- <SCP dir="${basedir}" source="remote.sh build.xml" destination="${scpDest}:${workspace}" />
+
+ <zip basedir="${localGitClone}/bundles/org.eclipse.equinox.executable/library" includes="**" destfile="${basedir}/library.zip" />
+ <SCP dir="${basedir}" source="remote.sh build.xml library.zip" destination="${scpDest}:${workspace}" />
<echo message="Execing ssh ${machine}" />
<exec executable="ssh" failonerror="true" >
<arg line="${sshUser} ${machine}" />
@@ -366,11 +374,14 @@
</target>
<target name="buildConfig" depends="init_exeFolder,init_fragment,determineBuild" >
- <antcall target="fetchExecutableSource" />
+ <!--<antcall target="fetchExecutableSource" />-->
<property name="javaHome" value="${java.home}/.." />
<property name="libraryFolder" value="${basedir}/${os}.${ws}.${arch}/library" />
<property file="${libraryFolder}/make_version.mak" />
+ <mkdir dir="${libraryFolder}" />
+ <unzip src="${basedir}/library.zip" dest="${libraryFolder}" />
+
<antcall target="buildNix" />
<antcall target="buildWindows" />
<antcall target="buildMac" />

Back to the top