Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2011-07-13 03:45:34 +0000
committerEike Stepper2011-07-13 03:45:34 +0000
commit16c143fcfc90946e8987ca7b0cf65eccf32ec162 (patch)
tree9e05e155c6491f129d07e43916ca113f18bde466 /plugins/org.eclipse.emf.cdo.releng
parentf666794e58f52be6c30e1b04b35b4fb64c11a573 (diff)
downloadcdo-16c143fcfc90946e8987ca7b0cf65eccf32ec162.tar.gz
cdo-16c143fcfc90946e8987ca7b0cf65eccf32ec162.tar.xz
cdo-16c143fcfc90946e8987ca7b0cf65eccf32ec162.zip
[351616] [releng] Provide platform-specific CDOServer + CDOExplorer downloads
https://bugs.eclipse.org/bugs/show_bug.cgi?id=351616
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.releng')
-rw-r--r--plugins/org.eclipse.emf.cdo.releng/build.properties1
-rw-r--r--plugins/org.eclipse.emf.cdo.releng/build.xml32
2 files changed, 29 insertions, 4 deletions
diff --git a/plugins/org.eclipse.emf.cdo.releng/build.properties b/plugins/org.eclipse.emf.cdo.releng/build.properties
index 28f2fa48ee..5df0bcbbe3 100644
--- a/plugins/org.eclipse.emf.cdo.releng/build.properties
+++ b/plugins/org.eclipse.emf.cdo.releng/build.properties
@@ -9,6 +9,7 @@
stream=4.1
branch=trunk
+train=indigo
weekly.build.type=I
svn.repository=http://dev.eclipse.org/svnroot/modeling/org.eclipse.emf.cdo
diff --git a/plugins/org.eclipse.emf.cdo.releng/build.xml b/plugins/org.eclipse.emf.cdo.releng/build.xml
index 68637a775f..3fe4553da2 100644
--- a/plugins/org.eclipse.emf.cdo.releng/build.xml
+++ b/plugins/org.eclipse.emf.cdo.releng/build.xml
@@ -94,6 +94,8 @@
<args>
<arg value="-r" />
<arg value="file:${hudson.WORKSPACE}" />
+ <arg value="-r" />
+ <arg value="${eclipse.downloads}/releases/${train}" />
<arg value="-d" />
<arg value="${temp.product}" />
<arg value="-p" />
@@ -140,6 +142,7 @@
<target name="-init.properties">
<echo message="stream = ${stream}" />
<echo message="branch = ${branch}" />
+ <echo message="train = ${train}" />
<condition property="no.proxy" value="${hudson.no_proxy}, dev.eclipse.org" else="dev.eclipse.org">
<isset property="hudson.no_proxy" />
@@ -148,10 +151,13 @@
<property name="checkout" value="/dev/null" />
<property name="releng" location="${checkout}/plugins/org.eclipse.emf.cdo.releng" />
<property name="test.report" location="${hudson.WORKSPACE}/test-report.xml" />
+
<property name="tools" location="${hudson.WORKSPACE}/tools" />
<property name="result" location="${hudson.WORKSPACE}/result" />
+
<property name="ws" location="${result}/ws" />
<property name="tp" location="${result}/tp" />
+
<property name="buckminster.output.root" location="${result}/output" />
<property name="buckminster.temp.root" location="${result}/temp" />
</target >
@@ -455,10 +461,7 @@
</fileset>
</copy>
- <antcall target="-generate.index" />
- <antcall target="-generate.bookmarks" />
- <antcall target="-generate.dropins" />
- <antcall target="-generate.products" />
+ <antcall target="-generate.all" />
</target>
<!-- ==== -->
@@ -479,6 +482,27 @@
</buckminster>
</target>
+ <!-- ============= -->
+ <!-- Generate Only -->
+ <!-- ============= -->
+
+ <target name="generate.only" depends="-init.properties" description="Runs the post-site.p2 generators">
+ <xmlproperty file="${hudson.WORKSPACE}/build-info.xml" prefix="build." keeproot="false" />
+ <echoproperties />
+ <antcall target="-generate.all" />
+ </target>
+
+ <!-- ============ -->
+ <!-- Generate All -->
+ <!-- ============ -->
+
+ <target name="-generate.all">
+ <antcall target="-generate.index" />
+ <antcall target="-generate.bookmarks" />
+ <antcall target="-generate.dropins" />
+ <antcall target="-generate.products" />
+ </target>
+
<!-- ============== -->
<!-- Generate Index -->
<!-- ============== -->

Back to the top