Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2018-03-20 07:55:54 +0000
committerSravan Kumar Lakkimsetti2018-03-20 07:55:54 +0000
commit931e7f13ca3336d376aede13d29f8c45b9e19cb0 (patch)
tree7a4394f9791a1f62da617efd54cfc100ffecb35b
parentf3afc36fbbc3557d24adf8ab386175feb8c22558 (diff)
downloadeclipse.platform.releng.aggregator-931e7f13ca3336d376aede13d29f8c45b9e19cb0.tar.gz
eclipse.platform.releng.aggregator-931e7f13ca3336d376aede13d29f8c45b9e19cb0.tar.xz
eclipse.platform.releng.aggregator-931e7f13ca3336d376aede13d29f8c45b9e19cb0.zip
Bug 531438 - Need one more executor of mac slave on releng jipp
Change-Id: I2a5dd2646a00f80d71e206e1d74f618abab7dbe9 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rw-r--r--production/sdk/collectTestResults.xml9
-rwxr-xr-xproduction/sdk/promotion/updateDropLocation.sh3
-rw-r--r--production/testScripts/invokeTestsJSON.xml2
3 files changed, 13 insertions, 1 deletions
diff --git a/production/sdk/collectTestResults.xml b/production/sdk/collectTestResults.xml
index 0b02cf8b6..b3793e233 100644
--- a/production/sdk/collectTestResults.xml
+++ b/production/sdk/collectTestResults.xml
@@ -101,6 +101,15 @@
casesensitive="yes" />
</condition>
+ <condition
+ property="env.HUDSON_ROOT_URI"
+ value="shared">
+ <contains
+ string="${job}"
+ substring="mac64"
+ 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 765c0b864..51b262077 100755
--- a/production/sdk/promotion/updateDropLocation.sh
+++ b/production/sdk/promotion/updateDropLocation.sh
@@ -261,6 +261,9 @@ function sendTestResultsMail ()
"win32")
HUDSON_URL="${HUDSON_PROTOCOL}://${HUDSON_HOST}:${HUDSON_PORT}/shared/view/Eclipse and Equinox"
;;
+ "mac64")
+ 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"
;;
diff --git a/production/testScripts/invokeTestsJSON.xml b/production/testScripts/invokeTestsJSON.xml
index 6ec2f012b..7cbb3a923 100644
--- a/production/testScripts/invokeTestsJSON.xml
+++ b/production/testScripts/invokeTestsJSON.xml
@@ -53,7 +53,7 @@
value="ep${eclipseStreamMajor}${eclipseStreamMinor}${buildType}-unit-win32" />
</antcall>
- <antcall target="triggerHudsonTests">
+ <antcall target="triggerHudsonWinTests">
<param
name="job"
value="ep${eclipseStreamMajor}${eclipseStreamMinor}${buildType}-unit-mac64" />

Back to the top