Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvlorenzo2012-01-12 09:27:03 +0000
committervlorenzo2012-01-12 09:27:03 +0000
commite1875ac1c4f8d6afa7b011385b141671d5f5cbc8 (patch)
tree26cb6a65e77f42a29b7e2cf24feb46532ec3416c /releng/org.eclipse.mdt.papyrus.releng.buckminster/papyrus-trunk-nightly
parent234f22fd4111e934c529921e08614e7424e73f94 (diff)
downloadorg.eclipse.papyrus-e1875ac1c4f8d6afa7b011385b141671d5f5cbc8.tar.gz
org.eclipse.papyrus-e1875ac1c4f8d6afa7b011385b141671d5f5cbc8.tar.xz
org.eclipse.papyrus-e1875ac1c4f8d6afa7b011385b141671d5f5cbc8.zip
NEW - Bug 365919: [Architecture - SVN - Build] Rewrite the Build
https://bugs.eclipse.org/bugs/show_bug.cgi?id=365919 build publishing
Diffstat (limited to 'releng/org.eclipse.mdt.papyrus.releng.buckminster/papyrus-trunk-nightly')
-rw-r--r--releng/org.eclipse.mdt.papyrus.releng.buckminster/papyrus-trunk-nightly/build-after.sh12
1 files changed, 4 insertions, 8 deletions
diff --git a/releng/org.eclipse.mdt.papyrus.releng.buckminster/papyrus-trunk-nightly/build-after.sh b/releng/org.eclipse.mdt.papyrus.releng.buckminster/papyrus-trunk-nightly/build-after.sh
index c2f6fac1a4a..7bb45073f64 100644
--- a/releng/org.eclipse.mdt.papyrus.releng.buckminster/papyrus-trunk-nightly/build-after.sh
+++ b/releng/org.eclipse.mdt.papyrus.releng.buckminster/papyrus-trunk-nightly/build-after.sh
@@ -24,12 +24,6 @@ mv $p2UpdateSiteDir/$zipName "tmp/$FULL_BUILD_ID"
# copy the generated psf files to the tmp dir
cp buildroot/result/*.psf "tmp/$FULL_BUILD_ID"
-# copy tests results
-if [ -e buildroot/result/testresults ]; then
- mkdir tmp/$FULL_BUILD_ID/testresults
- cp -r buildroot/result/testresults/ "tmp/$FULL_BUILD_ID"
-fi
-
mv revision.txt "tmp/$FULL_BUILD_ID"
# copy the build log into the result
@@ -38,5 +32,7 @@ wget --quiet --no-check-certificate ${HUDSON_URL}/job/${JOB_NAME}/${BUILD_NUMBER
(cd tmp && zip -r ${FULL_BUILD_ID}.zip *)
mv tmp/${FULL_BUILD_ID}.zip .
-echo ${FULL_BUILD_ID} > $promoteSignal
-echo $VERSION > $promoteVersion
+if [ "$BUILD_TYPE" == "N" ]; then
+ echo ${FULL_BUILD_ID} > $promoteSignal
+ echo $VERSION > $promoteVersion
+fi

Back to the top