Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2018-04-24 09:16:58 +0000
committerSravan Kumar Lakkimsetti2018-09-17 07:06:17 +0000
commitd607478a1ea458800c630612439ac050cbc3816b (patch)
tree3d49f9606df36cfa38f7caf36c994e747c081876 /production/sdk
parent5fa54eff7f8f666c9da6044ef33a229a09a9cf78 (diff)
downloadeclipse.platform.releng.aggregator-d607478a1ea458800c630612439ac050cbc3816b.tar.gz
eclipse.platform.releng.aggregator-d607478a1ea458800c630612439ac050cbc3816b.tar.xz
eclipse.platform.releng.aggregator-d607478a1ea458800c630612439ac050cbc3816b.zip
Bug 536766 - Drop 32 bit support in 4.10
Change-Id: I2ab35ba85b3305a371ecc76d21abd96238df9f0a Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'production/sdk')
-rw-r--r--production/sdk/collectTestResults.xml9
-rwxr-xr-xproduction/sdk/promotion/updateDropLocation.sh9
2 files changed, 1 insertions, 17 deletions
diff --git a/production/sdk/collectTestResults.xml b/production/sdk/collectTestResults.xml
index bb8eacd30..df95cbf65 100644
--- a/production/sdk/collectTestResults.xml
+++ b/production/sdk/collectTestResults.xml
@@ -92,15 +92,6 @@
<isset property="env.WORKSPACE"/>
</condition>
- <condition
- property="env.HUDSON_ROOT_URI"
- value="shared">
- <contains
- string="${job}"
- substring="win32"
- casesensitive="yes" />
- </condition>
-
<property
name="env.HUDSON_ROOT_URI"
value="releng" />
diff --git a/production/sdk/promotion/updateDropLocation.sh b/production/sdk/promotion/updateDropLocation.sh
index d3cd5eb37..79122d139 100755
--- a/production/sdk/promotion/updateDropLocation.sh
+++ b/production/sdk/promotion/updateDropLocation.sh
@@ -257,14 +257,7 @@ function sendTestResultsMail ()
fi
platform=$(echo ${JOB_NAME}|cut -b 12-16)
- case "$platform" in
- "win32")
- HUDSON_URL="${HUDSON_PROTOCOL}://${HUDSON_HOST}:${HUDSON_PORT}/shared/view/Eclipse and Equinox"
- ;;
- *)
- HUDSON_URL="${HUDSON_PROTOCOL}://${HUDSON_HOST}:${HUDSON_PORT}/${HUDSON_ROOT_URI}/view/Automated tests"
- ;;
- esac
+ HUDSON_URL="${HUDSON_PROTOCOL}://${HUDSON_HOST}:${HUDSON_PORT}/${HUDSON_ROOT_URI}/view/Automated tests"
# Now read "elapsed time" duration from Hudson. (The time above is the sum of all unit tests times,
# so does not include "overhead" and is deceptive.) The "-O -" means send output to standard out (instead of file).

Back to the top