Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2017-09-25 09:17:07 +0000
committerSravan Kumar Lakkimsetti2017-09-25 09:17:37 +0000
commit69aad2c4319b0a767a9706004d03b1398cfd92a7 (patch)
treeb993c30564e0b1598fcc15f177034533d37ed64d
parenta97882a854f71ced0582a1f13b3d26344e04f8e8 (diff)
downloadeclipse.platform.releng.aggregator-69aad2c4319b0a767a9706004d03b1398cfd92a7.tar.gz
eclipse.platform.releng.aggregator-69aad2c4319b0a767a9706004d03b1398cfd92a7.tar.xz
eclipse.platform.releng.aggregator-69aad2c4319b0a767a9706004d03b1398cfd92a7.zip
Bug 522707 - Make 4.7.1a builds visible
This reverts commit 4a38db391c7f432184b6e0c6c4e3f2db6cd67af7. This reverts commit e42506f18ed0852652ada7abafe2e33f60fa1144. Change-Id: I1aacf0344672a40117a0796ef6eca206474b5d8e 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 28ae4701c..08ce15b18 100755
--- a/production/build-functions.shsource
+++ b/production/build-functions.shsource
@@ -1217,7 +1217,7 @@ fn-publish-eclipse ()
-Djava.io.tmpdir=$TMP_DIR \
publish
# hide experimental builds, for now
- if [[ $BUILD_TYPE =~ [PXYM] ]]
+ if [[ $BUILD_TYPE =~ [PXY] ]]
then
touch buildHidden
fi
diff --git a/production/sdk/promotion/syncDropLocation.sh b/production/sdk/promotion/syncDropLocation.sh
index c31d81804..54f78797e 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}" != "M" ]]
+ if [[ "${buildType}" != "P" ]]
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