Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2017-09-19 09:03:19 +0000
committerSravan Kumar Lakkimsetti2017-09-19 09:03:19 +0000
commite42506f18ed0852652ada7abafe2e33f60fa1144 (patch)
tree71d902c66f122dc7bf87fb151f3f0ebc6cdf3e8a
parentd1f10c2738a5abf7a89be74bef899a2f11f99872 (diff)
downloadeclipse.platform.releng.aggregator-e42506f18ed0852652ada7abafe2e33f60fa1144.tar.gz
eclipse.platform.releng.aggregator-e42506f18ed0852652ada7abafe2e33f60fa1144.tar.xz
eclipse.platform.releng.aggregator-e42506f18ed0852652ada7abafe2e33f60fa1144.zip
Bug 522476 - Hide 4.7.1a builds
Change-Id: I42fc440b02d7b2cb3ad3efba281ea797fd6fa02d 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 08ce15b18..28ae4701c 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 =~ [PXY] ]]
+ if [[ $BUILD_TYPE =~ [PXYM] ]]
then
touch buildHidden
fi
diff --git a/production/sdk/promotion/syncDropLocation.sh b/production/sdk/promotion/syncDropLocation.sh
index ed3147c7a..06d62fdb5 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" ]]
+ if [[ "${buildType}" != "P" && "${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