Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Knauer2008-06-18 09:40:28 +0000
committerMarkus Knauer2008-06-18 09:40:28 +0000
commite8f33caffd16ede78c064665c68c99129396c1d0 (patch)
treedbb7730704e8deff2830eb03cbd70719d69864a7 /releng/org.eclipse.epp.config/startEPP34.sh
parentf7dc1de3c3fcc8335e0391bc294b2623f290b25c (diff)
downloadorg.eclipse.epp.packages-e8f33caffd16ede78c064665c68c99129396c1d0.tar.gz
org.eclipse.epp.packages-e8f33caffd16ede78c064665c68c99129396c1d0.tar.xz
org.eclipse.epp.packages-e8f33caffd16ede78c064665c68c99129396c1d0.zip
incubationLinkFix
Diffstat (limited to 'releng/org.eclipse.epp.config/startEPP34.sh')
-rw-r--r--releng/org.eclipse.epp.config/startEPP34.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/releng/org.eclipse.epp.config/startEPP34.sh b/releng/org.eclipse.epp.config/startEPP34.sh
index 21ac3a03..ccadc89f 100644
--- a/releng/org.eclipse.epp.config/startEPP34.sh
+++ b/releng/org.eclipse.epp.config/startEPP34.sh
@@ -16,6 +16,7 @@ TESTSTATUSFILENAME="status34test.stub"
LOCKFILE="/tmp/epp.build34.lock"
CVSPATH="org.eclipse.epp/releng/org.eclipse.epp.config"
DOWNLOADPACKAGES="cpp java jee rcp"
+INCUBATIONPACKAGES="modeling"
PLATFORMS="win32.win32.x86.zip linux.gtk.x86.tar.gz linux.gtk.x86_64.tar.gz macosx.carbon.ppc.tar.gz"
BASENAME="ganymede-RC5"
BUILDSUCCESS=""
@@ -23,6 +24,7 @@ BUILDSUCCESS=""
###############################################################################
. ${WORKING_DIR}/${CVSPATH}/tools/functions.sh
+. ${WORKING_DIR}/${CVSPATH}/tools/incubation.sh
# only one build process allowed
if [ -e ${LOCKFILE} ]; then
@@ -155,7 +157,7 @@ do
then
cat >>$TARGET_DIR/$STATUSFILENAME <<Endofmessage
<td align="center" style="background-color: rgb(204, 255, 204);">
- <a href="http://build.eclipse.org/technology/epp/epp_build/34/download/${START_TIME}/index.html">Success</a><br>
+ <a href="http://build.eclipse.org/technology/epp/epp_bu$TARGET_DIR/$TESTSTATUSFILENAMEild/34/download/${START_TIME}/index.html">Success</a><br>
<font size="-2">
<a href="http://build.eclipse.org/technology/epp/epp_build/34/download/${START_TIME}/${START_TIME}_eclipse-${PACKAGENAME}-${BASENAME}-win32.win32.x86.zip">win32</a> |
<a href="http://build.eclipse.org/technology/epp/epp_build/34/download/${START_TIME}/index.html">other</a>
@@ -198,6 +200,13 @@ Endofmessage
done
echo "</tr>" >>$TARGET_DIR/$TESTSTATUSFILENAME
+for INCUBATIONPACKAGE in ${INCUBATIONPACKAGES};
+do
+ pullAllConfigFiles eclipse-${INCUBATIONPACKAGE}-${BASENAME} $TARGET_DIR/index.html ${START_TIME}
+ pullAllConfigFiles eclipse-${INCUBATIONPACKAGE}-${BASENAME} $TARGET_DIR/$STATUSFILENAME ${START_TIME}
+ pullAllConfigFiles eclipse-${INCUBATIONPACKAGE}-${BASENAME} $TARGET_DIR/$TESTSTATUSFILENAME ${START_TIME}
+done
+
# move everything to download area
echo "...moving files to download directory ${DOWNLOAD_DIR}"

Back to the top