Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2020-01-24 09:58:20 +0000
committerSravan Kumar Lakkimsetti2020-01-24 09:58:20 +0000
commit977b374e685255ba9084b5e95c625df00396b46a (patch)
treeffd765e7df46085c3f2e098f6074d4df43a7c7b9
parentef878391d6edbd0092e187a3d1988a344e8a94ba (diff)
downloadeclipse.platform.releng.aggregator-977b374e685255ba9084b5e95c625df00396b46a.tar.gz
eclipse.platform.releng.aggregator-977b374e685255ba9084b5e95c625df00396b46a.tar.xz
eclipse.platform.releng.aggregator-977b374e685255ba9084b5e95c625df00396b46a.zip
Bug 553757 - Migrate I-builds to new infra
Added creation of ebuilder zip to create source bundles changed MAVEN OPTIONS to 6GB Change-Id: I653aa35542a3f58a4d7a622dea5e08e9899c70de Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rw-r--r--cje-production/buildproperties.txt2
-rwxr-xr-xcje-production/mbscripts/mb200_createSourceBundles.sh11
2 files changed, 11 insertions, 2 deletions
diff --git a/cje-production/buildproperties.txt b/cje-production/buildproperties.txt
index 18aa2347c..db8e39345 100644
--- a/cje-production/buildproperties.txt
+++ b/cje-production/buildproperties.txt
@@ -49,5 +49,5 @@ BASEBUILDER_DIR="tmp/org.eclipse.releng.basebuilder"
ECLIPSE_RUN_REPO="https://download.eclipse.org/eclipse/updates/4.15-I-builds/"
#Maven parameters
-MAVEN_OPTS="-Xmx4096m"
+MAVEN_OPTS="-Xmx6G"
JAVA_DOC_TOOL="-Declipse.javadoc=/opt/tools/java/openjdk/jdk-11/latest/bin/javadoc"
diff --git a/cje-production/mbscripts/mb200_createSourceBundles.sh b/cje-production/mbscripts/mb200_createSourceBundles.sh
index 5146c65d2..17d0d5f2b 100755
--- a/cje-production/mbscripts/mb200_createSourceBundles.sh
+++ b/cje-production/mbscripts/mb200_createSourceBundles.sh
@@ -24,4 +24,13 @@ source $CJE_ROOT/scripts/common-functions.shsource
source $1
cd $CJE_ROOT/gitCache/eclipse.platform.releng.aggregator
-mvn clean verify -f eclipse-platform-sources/pom.xml -DbuildId=$BUILD_ID
+(mvn clean verify -f eclipse-platform-sources/pom.xml -DbuildId=$BUILD_ID)&
+
+#creating ebuilder zip for tests use
+EBUILDER=eclipse.platform.releng.aggregator
+BUILD_DIR=$CJE_ROOT/$DROP_DIR/$BUILD_ID
+pushd ${BUILD_DIR}
+zip -r "${BUILD_DIR}/${EBUILDER}-${EBUILDER_HASH}.zip" "${CJE_ROOT}/${AGG_DIR}/production/testScripts"
+popd
+
+wait

Back to the top