Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2017-09-11 11:31:47 +0000
committerSravan Kumar Lakkimsetti2017-09-11 11:31:47 +0000
commit2ed0de59b3cd14a42b70baef2d2f266f3d723a2f (patch)
treed5fc8a1c7eb6e28bcb41c14b050744e034c99cdf
parent798bf9fe1caac138689b338efaca48117d1fb769 (diff)
downloadeclipse.platform.releng.aggregator-2ed0de59b3cd14a42b70baef2d2f266f3d723a2f.tar.gz
eclipse.platform.releng.aggregator-2ed0de59b3cd14a42b70baef2d2f266f3d723a2f.tar.xz
eclipse.platform.releng.aggregator-2ed0de59b3cd14a42b70baef2d2f266f3d723a2f.zip
Bug 522109 - [9] Need daily Y builds
- adding repository automatically to Y-build repo - Making the build visible automatically on YIndex page Change-Id: I14d6e8a4e68e8b6b56728ea73c985d3540450ab1 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 05ff4793c..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 =~ [PXY] ]]
+ if [[ $BUILD_TYPE =~ [PX] ]]
then
touch buildHidden
fi
diff --git a/production/sdk/promotion/syncDropLocation.sh b/production/sdk/promotion/syncDropLocation.sh
index 500664206..0dd9614f5 100755
--- a/production/sdk/promotion/syncDropLocation.sh
+++ b/production/sdk/promotion/syncDropLocation.sh
@@ -304,7 +304,7 @@ function syncRepoSite ()
comparatorLogPath="${logsDirectory}/comparatorlogs/buildtimeComparatorUnanticipated.log.txt"
logSize=$(stat -c '%s' ${comparatorLogPath} )
- if [[ $logSize -lt 250 ]]
+ if [[ $logSize -lt 250 || "${buildType}" == "Y" ]]
then
# update composite!
# add ${buildId} to {toDir}

Back to the top