Skip to main content
summaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
authorAndrew Niefer2011-07-06 18:10:32 +0000
committerAndrew Niefer2011-07-06 18:10:32 +0000
commit7ec6dc0f6254145aab43ea3f08b4bafe0ab5a33d (patch)
tree409e82b629f46cca43fc70deffa794b0d04e1928 /releng
parent6239dd1bf1cf50aa923a2f67774f74010ea23f15 (diff)
downloadrt.equinox.framework-7ec6dc0f6254145aab43ea3f08b4bafe0ab5a33d.tar.gz
rt.equinox.framework-7ec6dc0f6254145aab43ea3f08b4bafe0ab5a33d.tar.xz
rt.equinox.framework-7ec6dc0f6254145aab43ea3f08b4bafe0ab5a33d.zip
Bug 350102 - Update launcher releng scripts to support moving to gitv20110706_git_migration
Diffstat (limited to 'releng')
-rw-r--r--releng/org.eclipse.equinox.launcher.releng/build.xml45
1 files changed, 37 insertions, 8 deletions
diff --git a/releng/org.eclipse.equinox.launcher.releng/build.xml b/releng/org.eclipse.equinox.launcher.releng/build.xml
index 1c64d9180..cb30d1d6f 100644
--- a/releng/org.eclipse.equinox.launcher.releng/build.xml
+++ b/releng/org.eclipse.equinox.launcher.releng/build.xml
@@ -72,6 +72,19 @@
</sequential>
</macrodef>
+ <!-- macro for invoking git -->
+ <macrodef name="git">
+ <attribute name="dir" />
+ <attribute name="command" />
+ <attribute name="arguments" default="" />
+ <sequential>
+ <exec dir="@{dir}" executable="git" >
+ <arg value="@{command}"/>
+ <arg line="@{arguments}"/>
+ </exec>
+ </sequential>
+ </macrodef>
+
<target name="init_exeFolder" >
<!-- set to "bin" or "contributed" according to which folder under org.eclipse.equinox.executable to store the built eclipse -->
<condition property="exeFolder" value="contributed" else="bin">
@@ -284,23 +297,39 @@
<antcall target="buildRemote" />
</target>
- <target name="cloneBinaryRepo" unless="binaryRepoExists" >
- <exec dir="${staging}" command="git" >
- <arg value="clone" />
- <arg value="ssh://git.eclipse.org/gitroot/equinox/rt.equinox.binaries.git" />
- </exec>
+ <target name="cloneGitRepos" unless="gitRepoExists" >
+ <git dir="${staging}" command="clone" arguments="ssh://git.eclipse.org/gitroot/equinox/rt.equinox.binaries.git" />
+ <git dir="${staging}" command="clone" arguments="ssh://git.eclipse.org/gitroot/equinox/rt.equinox.framework.git" />
</target>
+
<target name="stageBinaries" depends="initProperties">
+ <tstamp/>
+ <property name="tag" value="v${DSTAMP}-${TSTAMP}"/>
<property name="staging" value="${basedir}/staging" />
-
- <available file="${staging}/rt.equinox.binaries" type="dir" property="binaryRepoExists" />
- <antcall target="cloneBinaryRepo" />
+ <property name="commitMsg" value="" />
+
+ <available file="${staging}/rt.equinox.binaries" type="dir" property="gitRepoExists" />
+ <antcall target="cloneGitRepos" />
+
+ <git dir="${staging}/rt.equinox.binaries" command="pull" />
+ <git dir="${staging}/rt.equinox.framework" command="pull" />
<SCP dir="${staging}" flag="r" source="${resultsBaseFolder}/org.eclipse.equinox.executable/*" destination="${staging}/rt.equinox.binaries/org.eclipse.equinox.executable" />
<SCP dir="${staging}" flag="r" source="${resultsBaseFolder}/org.eclipse.equinox.launcher/fragments/*" destination="${staging}/rt.equinox.binaries" />
<SCP dir="${staging}" flag="r" source="${resultsBaseFolder}/org.eclipse.equinox.launcher/contributed/*" destination="${staging}/rt.equinox.binaries" />
+ <git dir="${staging}/rt.equinox.binaries" command="commit" arguments="-a -m &quot;Recompiled binaries ${commitMsg}&quot;" />
+ <git dir="${staging}/rt.equinox.binaries" command="tag" arguments="${tag}" />
+ <git dir="${staging}/rt.equinox.binaries" command="push" />
+ <git dir="${staging}/rt.equinox.binaries" command="push" arguments="--tags" />
+
+ <replaceregexp match="binaryTag=(.*)" replace="binaryTag=${tag}" >
+ <fileset dir="${staging}/rt.equinox.framework" includes="**/build.properties" />
+ </replaceregexp>
+ <git dir="${staging}/rt.equinox.framework" command="commit" arguments="-a -m &quot;Binaries ${tag} ${commitMsg}&quot;" />
+ <git dir="${staging}/rt.equinox.framework" command="push" />
+
</target>
<target name="buildLocal" if="local" >

Back to the top