Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'releng/org.eclipse.oomph.releng/hudson/promote.sh')
-rw-r--r--releng/org.eclipse.oomph.releng/hudson/promote.sh11
1 files changed, 7 insertions, 4 deletions
diff --git a/releng/org.eclipse.oomph.releng/hudson/promote.sh b/releng/org.eclipse.oomph.releng/hudson/promote.sh
index 196dcc574..741431f99 100644
--- a/releng/org.eclipse.oomph.releng/hudson/promote.sh
+++ b/releng/org.eclipse.oomph.releng/hudson/promote.sh
@@ -6,7 +6,7 @@ if [[ "$BUILD_KEY" == "" ]]; then
elif [[ "$BUILD_TYPE" == nightly ]]; then
TYPE="N"
fi
-
+
if [[ "$TYPE" != "" ]]; then
BUILD_KEY=$TYPE`echo $BUILD_ID | sed 's/\([0-9]*\)-\([0-9]*\)-\([0-9]*\)_\([0-9]*\)-\([0-9]*\)-\([0-9]*\)/\1\2\3-\4\5\6/g'`
fi
@@ -26,7 +26,7 @@ if [[ "$GIT" == "" ]]; then
fi
if [[ "$DOWNLOADS" == "" ]]; then
- DOWNLOADS=/home/data/httpd/download.eclipse.org/oomph/promotest
+ DOWNLOADS=/home/data/httpd/download.eclipse.org/oomph
fi
set -o nounset
@@ -64,7 +64,10 @@ set -o errexit
echo ""
PROPERTIES=$WORKSPACE/updates/repository.properties
-echo "key = $BUILD_KEY" >> $PROPERTIES
+echo "branch = $GIT_BRANCH" >> $PROPERTIES
+echo "commit = $GIT_COMMIT" >> $PROPERTIES
+echo "number = $BUILD_NUMBER" >> $PROPERTIES
+echo "key = $BUILD_KEY" >> $PROPERTIES
echo "label = $BUILD_LABEL" >> $PROPERTIES
RELENG=$GIT/releng/org.eclipse.oomph.releng/hudson
@@ -107,7 +110,7 @@ mkdir $PRODUCTS.tmp
cd $WORKSPACE/products
for f in *.zip *.tar.gz; do
echo "Promoting $f"
-
+
cd $WORKSPACE
rm -rf $WORKSPACE/tmp
mkdir $WORKSPACE/tmp

Back to the top