Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2020-02-13 06:36:24 +0000
committerSravan Kumar Lakkimsetti2020-02-13 06:36:24 +0000
commit25f89bee8c19ed79b2bc865c8655c2768a400b0f (patch)
tree92ee4e5cce024d2a522d288d51c288c8181a76e0 /cje-production/mbscripts
parent0f5286d9c1045518d09c19703669831f77ed8e96 (diff)
downloadeclipse.platform.releng.aggregator-25f89bee8c19ed79b2bc865c8655c2768a400b0f.tar.gz
eclipse.platform.releng.aggregator-25f89bee8c19ed79b2bc865c8655c2768a400b0f.tar.xz
eclipse.platform.releng.aggregator-25f89bee8c19ed79b2bc865c8655c2768a400b0f.zip
Bug 553757 - Migrate I-builds to new infra
- Creating buildUnstable file in the job itself rather than creating it on the download server Change-Id: Ic0c952bc0f1499c0b8c09bc4b1cf0cd42e9d0a7f Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'cje-production/mbscripts')
-rwxr-xr-xcje-production/mbscripts/mb600_promoteEclipse.sh10
-rwxr-xr-xcje-production/mbscripts/mb610_promoteEquinox.sh10
2 files changed, 10 insertions, 10 deletions
diff --git a/cje-production/mbscripts/mb600_promoteEclipse.sh b/cje-production/mbscripts/mb600_promoteEclipse.sh
index 7e5004b54..12bbe4228 100755
--- a/cje-production/mbscripts/mb600_promoteEclipse.sh
+++ b/cje-production/mbscripts/mb600_promoteEclipse.sh
@@ -24,12 +24,12 @@ source $CJE_ROOT/scripts/common-functions.shsource
source $1
pushd $CJE_ROOT/$DROP_DIR/
-epDownloadDir=/home/data/httpd/download.eclipse.org/eclipse
-dropsPath=${epDownloadDir}/downloads/drops4
-scp -r ${BUILD_ID} genie.releng@projects-storage.eclipse.org:${dropsPath}/.
if [[ $COMPARATOR_ERRORS == "true" ]]
then
- ssh genie.releng@projects-storage.eclipse.org touch ${dropsPath}/${BUILD_ID}/buildUnstable
- ssh genie.releng@projects-storage.eclipse.org echo "<p>This build has been marked unstable due to <a href='https://download.eclipse.org/eclipse/downloads/drops4/${BUILD_ID}/buildlogs/comparatorlogs/buildtimeComparatorUnanticipated.log.txt'>unanticipated comparator errors</a></p>">> ${dropsPath}/${BUILD_ID}/buildUnstable
+ touch ${BUILD_ID}/buildUnstable
+ echo "<p>This build has been marked unstable due to <a href='https://download.eclipse.org/eclipse/downloads/drops4/${BUILD_ID}/buildlogs/comparatorlogs/buildtimeComparatorUnanticipated.log.txt'>unanticipated comparator errors</a></p>">> ${BUILD_ID}/buildUnstable
fi
+epDownloadDir=/home/data/httpd/download.eclipse.org/eclipse
+dropsPath=${epDownloadDir}/downloads/drops4
+scp -r ${BUILD_ID} genie.releng@projects-storage.eclipse.org:${dropsPath}/.
popd
diff --git a/cje-production/mbscripts/mb610_promoteEquinox.sh b/cje-production/mbscripts/mb610_promoteEquinox.sh
index 2e10b9110..bd8c72241 100755
--- a/cje-production/mbscripts/mb610_promoteEquinox.sh
+++ b/cje-production/mbscripts/mb610_promoteEquinox.sh
@@ -24,12 +24,12 @@ source $CJE_ROOT/scripts/common-functions.shsource
source $1
pushd $CJE_ROOT/$EQUINOX_DROP_DIR
-epDownloadDir=/home/data/httpd/download.eclipse.org/equinox
-dropsPath=${epDownloadDir}/drops
-scp -r ${BUILD_ID} genie.releng@projects-storage.eclipse.org:${dropsPath}/.
if [[ $COMPARATOR_ERRORS == "true" ]]
then
- ssh genie.releng@projects-storage.eclipse.org touch ${dropsPath}/${BUILD_ID}/buildUnstable
- ssh genie.releng@projects-storage.eclipse.org echo "<p>This build has been marked unstable due to <a href='https://download.eclipse.org/eclipse/downloads/drops4/${BUILD_ID}/buildlogs/comparatorlogs/buildtimeComparatorUnanticipated.log.txt'>unanticipated comparator errors</a></p>">> ${dropsPath}/${BUILD_ID}/buildUnstable
+ touch ${BUILD_ID}/buildUnstable
+ echo "<p>This build has been marked unstable due to <a href='https://download.eclipse.org/eclipse/downloads/drops4/${BUILD_ID}/buildlogs/comparatorlogs/buildtimeComparatorUnanticipated.log.txt'>unanticipated comparator errors</a></p>">> ${BUILD_ID}/buildUnstable
fi
+epDownloadDir=/home/data/httpd/download.eclipse.org/equinox
+dropsPath=${epDownloadDir}/drops
+scp -r ${BUILD_ID} genie.releng@projects-storage.eclipse.org:${dropsPath}/.
popd

Back to the top