Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Build] Run Eclipse-SDK aggregator build with multiple threads #2146

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .mvn/jvm.config
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
-XX:+PrintFlagsFinal
-Xmx2G
-Xmx3G
Copy link
Member Author

@HannesWell HannesWell Jun 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The latest verification build ran out of heap space. Looks like a build with multiple threads needs more RAM (not really a surprise).
Since we are running on the large 8GB executors since #2148, I think 3GB should not be a problem.

1 change: 1 addition & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ pipeline {
sh '''
mvn clean install -pl :eclipse-sdk-prereqs,:org.eclipse.jdt.core.compiler.batch -DlocalEcjVersion=99.99 -Dmaven.repo.local=$WORKSPACE/.m2/repository -U
mvn clean verify -e -Dmaven.repo.local=$WORKSPACE/.m2/repository \
-T 1C \
-Pbree-libs \
-DskipTests=true \
-Dcompare-version-with-baselines.skip=false \
Expand Down
1 change: 1 addition & 0 deletions cje-production/mbscripts/mb220_buildSdkPatch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,5 @@ mvn clean verify -DskipTests=true ${MVN_ARGS} \
-Dgpg.passphrase=${KEYRING_PASSPHRASE} \
-Dcbi-ecj-version=99.99 \
-e \
-T 1C \
${JAVA_DOC_TOOL}
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,14 @@
<groupId>eclipse.platform.repository</groupId>
<artifactId>eclipse.platform.repository</artifactId>
<packaging>eclipse-repository</packaging>
<dependencies>
<dependency>
<groupId>eclipse.platform.releng.tychoeclipsebuilder</groupId>
<artifactId>eclipse-junit-tests</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
Expand Down