Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2017-09-25 09:12:41 +0000
committerSravan Kumar Lakkimsetti2017-09-25 09:13:38 +0000
commit95186dfae15cf5db7db22e3164df92c186c6b72d (patch)
treeee4ab4b49e2f4118db63288ac0b4d6239a418820
parentaad82c0b0216287275dc831c651ed66842104824 (diff)
downloadeclipse.platform.releng.aggregator-95186dfae15cf5db7db22e3164df92c186c6b72d.tar.gz
eclipse.platform.releng.aggregator-95186dfae15cf5db7db22e3164df92c186c6b72d.tar.xz
eclipse.platform.releng.aggregator-95186dfae15cf5db7db22e3164df92c186c6b72d.zip
Bug 522707 - Make 4.7.1a builds visible
This reverts commit db263bbfad3842b4f09846586d4d9ad465a8c101 This reverts commit 3319913c33f4669f8f7821fe399233f2d1c58d56. Change-Id: Ic6af5d6b91f67c01edc22e22f2a33c7e08239ea6 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rwxr-xr-xproduction/build-functions.shsource2
-rwxr-xr-xproduction/sdk/promotion/syncDropLocation.sh2
-rw-r--r--production/sdk/promotion/syncUpdateUtils.shsource5
3 files changed, 3 insertions, 6 deletions
diff --git a/production/build-functions.shsource b/production/build-functions.shsource
index c37e3aca8..e1bebbd49 100755
--- a/production/build-functions.shsource
+++ b/production/build-functions.shsource
@@ -1253,7 +1253,7 @@ fn-publish-eclipse ()
-Djava.io.tmpdir=$TMP_DIR \
publish
# hide experimental builds, for now
- if [[ $BUILD_TYPE =~ [PXM] ]]
+ if [[ $BUILD_TYPE =~ [PX] ]]
then
touch buildHidden
fi
diff --git a/production/sdk/promotion/syncDropLocation.sh b/production/sdk/promotion/syncDropLocation.sh
index ee2468e05..598f9cc48 100755
--- a/production/sdk/promotion/syncDropLocation.sh
+++ b/production/sdk/promotion/syncDropLocation.sh
@@ -323,7 +323,7 @@ function syncRepoSite ()
# assume ant is on the path
ant -f $EBuilderDir/eclipse/getBaseBuilderAndTools.xml -DWORKSPACE=$dropFromBuildDir
- if [[ "${buildType}" != "P" && "${buildType}" != "U" && "${buildType}" != "M" ]]
+ if [[ "${buildType}" != "P" && "${buildType}" != "U" ]]
then
${PROMOTION_SCRIPT_PATH}/runAntRunner.sh ${buildId} ${eclipseStream} ${PROMOTION_SCRIPT_PATH}/addToComposite.xml addToComposite -Drepodir=${toDir} -Dcomplocation=${buildId}
RC=$?
diff --git a/production/sdk/promotion/syncUpdateUtils.shsource b/production/sdk/promotion/syncUpdateUtils.shsource
index 67c03e0d3..c6226ac22 100644
--- a/production/sdk/promotion/syncUpdateUtils.shsource
+++ b/production/sdk/promotion/syncUpdateUtils.shsource
@@ -378,7 +378,7 @@ function setToAndFromAddresses ()
# override 'TO' in localBuildProperties.shsource if doing local tests
# for initial testing, only to me -- change as desired after initial testing.
-if [[ "${buildType}" =~ [PYXUM] ]]
+if [[ "${buildType}" =~ [PYXU] ]]
then
case "${buildType}" in
"P" )
@@ -387,9 +387,6 @@ then
"U" )
export TO=${TO:-"sravankumarl@in.ibm.com,noopur_gupta@in.ibm.com,jdt-ui-dev@eclipse.org"}
export SUBJECT="Branch SDK Build: ${SUBJECT}" ;;
- "M" )
- export TO=${TO:-"sravankumarl@in.ibm.com,manpalat@in.ibm.com"}
- ;;
"Y" )
export TO=${TO:-"sravankumarl@in.ibm.com,jdt-core-dev@eclipse.org"}
export SUBJECT="Branch SDK Build: ${SUBJECT}" ;;

Back to the top