Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2014-11-22 17:33:43 +0000
committerEike Stepper2014-11-22 17:33:43 +0000
commit1807e0a6898c392abd31de3b39a1b515620dcb74 (patch)
treef11caf396a867c3f05b9add39575f8bf05b5eb33
parent10945dc9307e12e4e7fde1667f4029a778c39876 (diff)
downloadorg.eclipse.oomph-add-build-signing.tar.gz
org.eclipse.oomph-add-build-signing.tar.xz
org.eclipse.oomph-add-build-signing.zip
[440396] Oomph binaries should be signedadd-build-signing
https://bugs.eclipse.org/bugs/show_bug.cgi?id=440396
-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