Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2017-09-19 08:57:18 +0000
committerSravan Kumar Lakkimsetti2017-09-19 08:57:18 +0000
commit3319913c33f4669f8f7821fe399233f2d1c58d56 (patch)
tree3a79ce59bfb3e0467d43023e240d44df6436d7cc
parent89697bf55136482bd02a94efc181f4bfec6e8a16 (diff)
downloadeclipse.platform.releng.aggregator-3319913c33f4669f8f7821fe399233f2d1c58d56.tar.gz
eclipse.platform.releng.aggregator-3319913c33f4669f8f7821fe399233f2d1c58d56.tar.xz
eclipse.platform.releng.aggregator-3319913c33f4669f8f7821fe399233f2d1c58d56.zip
Bug 522476 - Hide 4.7.1a builds
Change-Id: Ifcd633d43cc8bac1c1a1678e9ff726b8a61a1367 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rwxr-xr-xproduction/build-functions.shsource2
-rwxr-xr-xproduction/sdk/promotion/syncDropLocation.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/production/build-functions.shsource b/production/build-functions.shsource
index e1bebbd49..c37e3aca8 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 =~ [PX] ]]
+ if [[ $BUILD_TYPE =~ [PXM] ]]
then
touch buildHidden
fi
diff --git a/production/sdk/promotion/syncDropLocation.sh b/production/sdk/promotion/syncDropLocation.sh
index 0dd9614f5..e1a36f14c 100755
--- a/production/sdk/promotion/syncDropLocation.sh
+++ b/production/sdk/promotion/syncDropLocation.sh
@@ -318,7 +318,7 @@ function syncRepoSite ()
# assume ant is on the path
ant -f $EBuilderDir/eclipse/getBaseBuilderAndTools.xml -DWORKSPACE=$dropFromBuildDir
- if [[ "${buildType}" != "P" && "${buildType}" != "U" ]]
+ if [[ "${buildType}" != "P" && "${buildType}" != "U" && "${buildType}" != "M" ]]
then
${PROMOTION_SCRIPT_PATH}/runAntRunner.sh ${buildId} ${eclipseStream} ${PROMOTION_SCRIPT_PATH}/addToComposite.xml addToComposite -Drepodir=${toDir} -Dcomplocation=${buildId}
RC=$?

Back to the top