Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2008-12-07 02:04:49 +0000
committerspingel2008-12-07 02:04:49 +0000
commit8a49fb8c456b80f8b9abc63ae02433e7ac1e2fb3 (patch)
treeff3ae22bb05cecf8cc86eec29dff6a135e168834
parentf80e9fe6c6040ed18287cb1284bb5910bb1a7b31 (diff)
downloadorg.eclipse.mylyn-8a49fb8c456b80f8b9abc63ae02433e7ac1e2fb3.tar.gz
org.eclipse.mylyn-8a49fb8c456b80f8b9abc63ae02433e7ac1e2fb3.tar.xz
org.eclipse.mylyn-8a49fb8c456b80f8b9abc63ae02433e7ac1e2fb3.zip
RESOLVED - bug 248310: [releng] use continuous integration to run builds and tests
https://bugs.eclipse.org/bugs/show_bug.cgi?id=248310
-rw-r--r--org.eclipse.mylyn.releng/build.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.releng/build.xml b/org.eclipse.mylyn.releng/build.xml
index fa9315d0..9ce22672 100644
--- a/org.eclipse.mylyn.releng/build.xml
+++ b/org.eclipse.mylyn.releng/build.xml
@@ -117,6 +117,9 @@
<param name="skip3.3" value="true"/>
<param name="skip3.5" value="true"/>
</antcall>
+ <antcall target="for-each-target">
+ <param name="call" value="publish-helper-standalone"/>
+ </antcall>
</target>
<target name="publish-helper">
@@ -128,12 +131,15 @@
<param name="file" value="org.eclipse.mylyn.tests.AllPerformanceTests.xml"/>
<param name="tag" value="[e${build.target}-perf]"/>
</antcall>
+ </target>
+
+ <target name="publish-helper-standalone">
<antcall target="publish-helper-run">
<param name="file" value="TEST-*.xml"/>
<param name="tag" value="[stdl]"/>
</antcall>
</target>
-
+
<target name="publish-helper-run">
<path id="file.id">
<fileset dir="${build.results}/test-${eclipse.version}">

Back to the top