Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2015-12-15 19:48:20 +0000
committerDavid Williams2015-12-15 19:48:20 +0000
commit3a34973c857e251815fb31c606be2b93caa1a03d (patch)
treeb969221713bfa8a049d853199ff572136f5a7127 /production/sdk/promotion/syncUpdateUtils.shsource
parent75a7c1bf379bc34794d46ab119784d30b6dd9e80 (diff)
downloadeclipse.platform.releng.aggregator-3a34973c857e251815fb31c606be2b93caa1a03d.tar.gz
eclipse.platform.releng.aggregator-3a34973c857e251815fb31c606be2b93caa1a03d.tar.xz
eclipse.platform.releng.aggregator-3a34973c857e251815fb31c606be2b93caa1a03d.zip
Bug 467982 - Fix for clickable links
Added Hudson URLs ... And initialize Hudson variables for Eclipse production machines. With comment. Fixed to provide explicit port (even though default would work, with more effort).
Diffstat (limited to 'production/sdk/promotion/syncUpdateUtils.shsource')
-rw-r--r--production/sdk/promotion/syncUpdateUtils.shsource6
1 files changed, 3 insertions, 3 deletions
diff --git a/production/sdk/promotion/syncUpdateUtils.shsource b/production/sdk/promotion/syncUpdateUtils.shsource
index fa4d053b9..a2f52ba87 100644
--- a/production/sdk/promotion/syncUpdateUtils.shsource
+++ b/production/sdk/promotion/syncUpdateUtils.shsource
@@ -10,12 +10,12 @@ export BUILD_HOME=${BUILD_HOME:-/shared/eclipse/builds}
# For production, use value for shared instance
HUDSON_PROTOCOL=${HUDSON_PROTOCOL:-"https"}
HUDSON_HOST=${HUDSON_HOST:-"hudson.eclipse.org"}
-# is standard port for "eclipse", so we'll leave blank
-HUDSON_PORT=${HUDSON_PORT:-""}
+# is standard port for "eclipse", but can not leave blank, since we use ':' in some URLs
+HUDSON_PORT=${HUDSON_PORT:-"443"}
HUDSON_ROOT_URI=${HUDSON_ROOT_URI:-"shared"}
# For production, use the special performance machine at eclipse
HUDSON_PERF_HOST=${HUDSON_PERF_HOST:-"hudson.eclipse.org"}
-HUDSON_PERF_PORT=${HUDSON_PERF_PORT:-""}
+HUDSON_PERF_PORT=${HUDSON_PERF_PORT:-"443"}
HUDSON_PERF_PROTOCOL=${HUDSON_PERF_PROTOCOL:-"https"}
LINUX_PERF_SEGMENT=${LINUX_PERF_SEGMENT:-"perftests"}

Back to the top