Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2016-04-03 04:21:09 +0000
committerDavid Williams2016-04-03 04:21:09 +0000
commit232912fc78079c2563714fe9297de0aae39623c7 (patch)
tree012758268bf96bea56b8e8a670185f71465c0cb4 /production/createReports.sh
parentf6d9ab7bd8c463324e533eaec364b40ccf971b59 (diff)
downloadeclipse.platform.releng.aggregator-232912fc78079c2563714fe9297de0aae39623c7.tar.gz
eclipse.platform.releng.aggregator-232912fc78079c2563714fe9297de0aae39623c7.tar.xz
eclipse.platform.releng.aggregator-232912fc78079c2563714fe9297de0aae39623c7.zip
[releng] correction for running locally
Diffstat (limited to 'production/createReports.sh')
-rwxr-xr-xproduction/createReports.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/production/createReports.sh b/production/createReports.sh
index 2fbc00ee6..8e208a508 100755
--- a/production/createReports.sh
+++ b/production/createReports.sh
@@ -3,14 +3,15 @@
# Assuming this is ran before "promote", so data is read and written to build machine,
# and then will be promoted with rest of build.
+source localBuildProperties.shsource 2>/dev/null
JAVA_8_HOME=/shared/common/jdk1.8.0_x64-latest
export JAVA_HOME=${JAVA_8_HOME}
buildIdToTest=${BUILD_ID:-"I20160314-2000"}
buildIdToCompare="4.5/R-4.5.2-201602121500"
build_type=${buildIdToTest:0:1}
-build_dir_root="/shared/eclipse/builds/4${build_type}/siteDir/eclipse/downloads/drops4"
-build_update_root="/shared/eclipse/builds/4${build_type}/siteDir/updates"
+build_dir_root="${BUILD_HOME}/4${build_type}/siteDir/eclipse/downloads/drops4"
+build_update_root="${BUILD_HOME}/4${build_type}/siteDir/updates"
dl_dir_root="/home/data/httpd/download.eclipse.org/eclipse/downloads/drops4"
if [[ ${build_type} == "M" ]]
then

Back to the top