We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bb62f3 commit 4c99faeCopy full SHA for 4c99fae
ci/release/Jenkinsfile
@@ -174,7 +174,11 @@ pipeline {
174
// update changelog from JIRA
175
// tags the version
176
// changes the version to the provided development version
177
- withEnv(["BRANCH=${env.GIT_BRANCH}"]) {
+ withEnv([
178
+ "BRANCH=${env.GIT_BRANCH}",
179
+ // Increase the amount of memory for this part since asciidoctor doc rendering consumes a lot of metaspace
180
+ "DEFAULT_JVM_OPTS=-Dlog4j2.disableJmx -Xmx4g -XX:MaxMetaspaceSize=768m -XX:+HeapDumpOnOutOfMemoryError -Duser.language=en -Duser.country=US -Duser.timezone=UTC -Dfile.encoding=UTF-8"
181
+ ]) {
182
sh ".release/scripts/prepare-release.sh ${env.PROJECT} ${env.RELEASE_VERSION} ${env.DEVELOPMENT_VERSION}"
183
}
184
0 commit comments