Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
authorcletavernie2012-08-27 12:31:05 +0000
committercletavernie2012-08-27 12:31:05 +0000
commit69a9a70ea75091bf93fc707b884bab0dbd457510 (patch)
tree750686a3c6769b3ad82cb5d3a8e34060a936799d /releng
parent361e06e69af617e62097a8104a0c2af7bd41738b (diff)
downloadorg.eclipse.papyrus-69a9a70ea75091bf93fc707b884bab0dbd457510.tar.gz
org.eclipse.papyrus-69a9a70ea75091bf93fc707b884bab0dbd457510.tar.xz
org.eclipse.papyrus-69a9a70ea75091bf93fc707b884bab0dbd457510.zip
Udpate the build configuration
Diffstat (limited to 'releng')
-rw-r--r--releng/org.eclipse.mdt.papyrus.releng.buckminster/papyrus-trunk-extra-nightly/build-after.sh5
-rw-r--r--releng/org.eclipse.mdt.papyrus.releng.buckminster/papyrus-trunk-nightly/build-after.sh9
2 files changed, 8 insertions, 6 deletions
diff --git a/releng/org.eclipse.mdt.papyrus.releng.buckminster/papyrus-trunk-extra-nightly/build-after.sh b/releng/org.eclipse.mdt.papyrus.releng.buckminster/papyrus-trunk-extra-nightly/build-after.sh
index 366c5710b8f..470ae536b8b 100644
--- a/releng/org.eclipse.mdt.papyrus.releng.buckminster/papyrus-trunk-extra-nightly/build-after.sh
+++ b/releng/org.eclipse.mdt.papyrus.releng.buckminster/papyrus-trunk-extra-nightly/build-after.sh
@@ -14,6 +14,7 @@
########## publishing ##########
p2UpdateSiteDir=${WORKSPACE}/buildroot/result/output/org.eclipse.papyrus.extra.build.feature_*-eclipse.feature/site.p2
+updateSite=/shared/jobs/${JOB_NAME}/updateSite
promoteSignal=/opt/public/modeling/mdt/papyrus/papyrus-trunk-extra-nightly/promoteSignal
promoteDirName=/opt/public/modeling/mdt/papyrus/papyrus-trunk-extra-nightly/promoteDirName
@@ -30,8 +31,8 @@ mkdir -p "tmp/extra"
(cd $p2UpdateSiteDir && zip -r $updateZipName *)
mv $p2UpdateSiteDir/$updateZipName "tmp/extra"
-rm -rf updateSite
-mv $p2UpdateSiteDir updateSite
+rm -rf $updateSite
+mv $p2UpdateSiteDir $updateSite
mv revision.txt "tmp/extra"
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 74f337cdb03..61e2212c046 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
@@ -14,6 +14,7 @@
########## publishing ##########
p2UpdateSiteDir=${WORKSPACE}/buildroot/result/output/org.eclipse.papyrus.build.feature_*-eclipse.feature/site.p2
+updateSite=/shared/jobs/${JOB_NAME}/updateSite
promoteSignal=/opt/public/modeling/mdt/papyrus/papyrus-trunk-nightly/promoteSignal
promoteVersion=/opt/public/modeling/mdt/papyrus/papyrus-trunk-nightly/promoteVersion
@@ -31,12 +32,12 @@ zipName="Papyrus-Main.zip"
rm -rf tmp
mkdir -p "tmp/$FULL_BUILD_ID"
-rm -rf updateSite
-mv $p2UpdateSiteDir updateSite
+rm -rf $updateSite
+mv $p2UpdateSiteDir $updateSite
# create the update site zip
-(cd updateSite && zip -r $updateZipName *)
-mv updateSite/$updateZipName "tmp/$FULL_BUILD_ID"
+(cd $updateSite && zip -r $updateZipName *)
+mv $updateSite/$updateZipName "tmp/$FULL_BUILD_ID"
# copy the generated psf files to the tmp dir
cp buildroot/result/*.psf "tmp/$FULL_BUILD_ID"

Back to the top