diff options
author | Sravan Kumar Lakkimsetti | 2019-06-13 05:32:30 +0000 |
---|---|---|
committer | Sravan Kumar Lakkimsetti | 2019-06-13 05:32:30 +0000 |
commit | cf46d7dc9d07d18fdb3fcef641e121e2e082042e (patch) | |
tree | 04609128a4175d70758d25e5fd7ed1f53157e570 /cje-production | |
parent | 26252ca9df546aa3270ba401050498dc3e178488 (diff) | |
download | eclipse.platform.releng.aggregator-cf46d7dc9d07d18fdb3fcef641e121e2e082042e.tar.gz eclipse.platform.releng.aggregator-cf46d7dc9d07d18fdb3fcef641e121e2e082042e.tar.xz eclipse.platform.releng.aggregator-cf46d7dc9d07d18fdb3fcef641e121e2e082042e.zip |
Change-Id: I5c2925b1cd0091198c1a9c182054c94efb3dde59
Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'cje-production')
-rw-r--r-- | cje-production/buildproperties.txt | 4 | ||||
-rwxr-xr-x | cje-production/mbscripts/mb030_downloadBuildToCompare.sh | 7 |
2 files changed, 6 insertions, 5 deletions
diff --git a/cje-production/buildproperties.txt b/cje-production/buildproperties.txt index da92e1259..eaa93e9a4 100644 --- a/cje-production/buildproperties.txt +++ b/cje-production/buildproperties.txt @@ -43,7 +43,7 @@ API_PREV_REF_LABEL="4.12" PREVIOUS_RELEASE_VER="4.12RC2" PREVIOUS_RELEASE_ID="S-4.12RC2-201906051800" BUILDTOOLS_REPO="http://build.eclipse.org/eclipse/buildtools/" -WEBTOOLS_REPO="https://download.eclipse.org/webtools/downloads/drops/R3.12.0/R-3.12.0-20181130055351/repositoryunittests/" +WEBTOOLS_REPO="http://download.eclipse.org/webtools/downloads/drops/R3.12.0/R-3.12.0-20181130055351/repositoryunittests/" WEBTOOLS_VER="1.2.0.v201405010053" BASEBUILDER_DIR="tmp/org.eclipse.releng.basebuilder" -ECLIPSE_RUN_REPO="https://download.eclipse.org/eclipse/updates/4.13-I-builds/" +ECLIPSE_RUN_REPO="http://download.eclipse.org/eclipse/updates/4.13-I-builds/" diff --git a/cje-production/mbscripts/mb030_downloadBuildToCompare.sh b/cje-production/mbscripts/mb030_downloadBuildToCompare.sh index 848feacac..04ab29efc 100755 --- a/cje-production/mbscripts/mb030_downloadBuildToCompare.sh +++ b/cje-production/mbscripts/mb030_downloadBuildToCompare.sh @@ -22,10 +22,11 @@ fi source $CJE_ROOT/scripts/common-functions.shsource source $1 +pushd $CJE_ROOT/$TMP_DIR if [[ -z "${WORKSPACE}" ]] then - pushd $CJE_ROOT/$TMP_DIR wget --recursive --no-parent --no-verbose http://$BUILD_TO_COMPARE_SITE/$PREVIOUS_RELEASE_VER/$PREVIOUS_RELEASE_ID & - popd +else + cp -r /home/data/httpd/download.eclipse.org/eclipse/updates/4.12milestones/$PREVIOUS_RELEASE_ID . fi - +popd |