Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEd.Willink2012-04-28 19:22:14 +0000
committerEd.Willink2012-04-28 19:22:14 +0000
commit81ef2c97809b4d354f6d097ed4384a6810ef336d (patch)
tree3a1637ee2446e81a0f8fbaf7f3f8ad109d883c6e /releng/org.eclipse.qvtd.releng.buckminster/scripts
parent02e89c73c572d2b64bccd008c23c0427d8f566f4 (diff)
downloadorg.eclipse.qvtd-81ef2c97809b4d354f6d097ed4384a6810ef336d.tar.gz
org.eclipse.qvtd-81ef2c97809b4d354f6d097ed4384a6810ef336d.tar.xz
org.eclipse.qvtd-81ef2c97809b4d354f6d097ed4384a6810ef336d.zip
[releng] Support signing
Diffstat (limited to 'releng/org.eclipse.qvtd.releng.buckminster/scripts')
-rw-r--r--releng/org.eclipse.qvtd.releng.buckminster/scripts/qvtd-tests-pre-buckminster.sh16
1 files changed, 13 insertions, 3 deletions
diff --git a/releng/org.eclipse.qvtd.releng.buckminster/scripts/qvtd-tests-pre-buckminster.sh b/releng/org.eclipse.qvtd.releng.buckminster/scripts/qvtd-tests-pre-buckminster.sh
index 4e7d6ebe1..984f20295 100644
--- a/releng/org.eclipse.qvtd.releng.buckminster/scripts/qvtd-tests-pre-buckminster.sh
+++ b/releng/org.eclipse.qvtd.releng.buckminster/scripts/qvtd-tests-pre-buckminster.sh
@@ -11,7 +11,7 @@ COMPACT_BUILD_ID="${COMPACT_BUILD_ID:0:12}"
echo
echo "# Define the Build Type (added by Hudson job definition)"
- echo "build.type=N"
+ echo "build.type=${BUILD_TYPE}"
echo
echo "# Define the Build ID (added by Hudson job definition)"
@@ -22,10 +22,18 @@ COMPACT_BUILD_ID="${COMPACT_BUILD_ID:0:12}"
echo "buckminster.build.timestamp=${BUILD_ID}"
echo
+ echo "# Define the Build Alias (added by Hudson job definition)"
+ echo "build.alias=${BUILD_ALIAS}"
+
+ echo
echo "# Define Hudson Build ID (added by Hudson job definition)"
echo "hudson.build.id=${BUILD_ID}"
echo
+ echo "# Define if Huson Build should create javadoc (added by Hudson job definition)"
+ echo "# manage.javadoc=${MANAGE_JAVADOC}"
+
+ echo
echo "# Override default locations (added by Hudson job definition)"
echo "buckminster.output.root=${WORKSPACE}/buildroot/buckminster.output"
echo "buckminster.temp.root=${WORKSPACE}/buildroot/buckminster.temp"
@@ -33,8 +41,9 @@ COMPACT_BUILD_ID="${COMPACT_BUILD_ID:0:12}"
echo "git.qvtd.local.repository.location=${WORKSPACE}/org.eclipse.qvtd.git"
echo
- echo "# Sign the jars (added by Hudson job definition)"
- echo "site.signing=false"
+ echo "# Sign the jars (added by Hudson job definition)"
+ echo "signing.type=eclipse.local"
+ echo "site.signing=${SITE_SIGNING}"
echo
echo "# Eclipse local download area (added by Hudson job definition"
@@ -43,6 +52,7 @@ COMPACT_BUILD_ID="${COMPACT_BUILD_ID:0:12}"
echo "# Required Properties for Publishing (added by Hudson job definition)"
echo "packages.base=MMT-QVTd.downloads"
echo "tests.base=MMT-QVTd.test.results"
+ echo "javadoc.base=MMT-QVTd.javadoc"
echo "version=0.9.0"
echo "downloads.area=/home/data/httpd/download.eclipse.org/modeling/mmt/qvtd"

Back to the top