Skip to content

Commit eb2bfa7

Browse files
authored
Update -Xss value (#729)
## Task Resolves: None ## Description This mitigates the following compilation error: ``` e: org.jetbrains.kotlin.backend.common.BackendException: Backend Internal error: Exception during psi2ir File being compiled: (672,9) in /root/_work/pulumi-kotlin/pulumi-kotlin/build/generated-src/gitlab8/com/pulumi/gitlab/kotlin/ApplicationSettingsArgs.kt The root cause java.lang.StackOverflowError was thrown at: java.base/java.lang.ClassLoader.defineClass1(Native Method) null: KtDotQualifiedExpression: com.pulumi.gitlab.ApplicationSettingsArgs.builder() .abuseNotificationEmail(abuseNotificationEmail?.applyValue({ args0 -> args0 })) .adminMode(adminMode?.applyValue({ args0 -> args0 })) .afterSignOutPath(afterSignOutPath?.applyValue({ args0 -> args0 })) .afterSignUpText(afterSignUpText?.applyValue({ args0 -> args0 })) .akismetApiKey(akismetApiKey?.applyValue({ args0 -> args0 })) .akismetEnabled(akismetEnabled?.applyValue({ args0 -> args0 })) .allowAccountDeletion(allowAccountDeletion?.applyValue({ args0 -> args0 })) .allowGroupOwnersToManageLdap(allowGroupOwnersToManageLdap?.applyValue({ args0 -> args0 })) .allowLocalRequestsFromSystemHooks( allowLocalRequestsFromSystemHooks?.applyValue({ args0 -> args0 }), ) ... ``` https://github.com/VirtuslabRnD/pulumi-kotlin/actions/runs/11459232264/job/33149512961 The error was preventing [this release](#725). --------- Signed-off-by: Julia Plewa <[email protected]>
1 parent 528e4e0 commit eb2bfa7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/prepare_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
runs-on: [ ubuntu-latest ]
8787
- provider: gitlab
8888
major-version: 8
89-
runs-on: [ self-hosted, active ]
89+
runs-on: [ ubuntu-latest ]
9090
- provider: digitalocean
9191
major-version: 4
9292
runs-on: [ ubuntu-latest ]
@@ -144,7 +144,7 @@ jobs:
144144
-Psigning.key.password="${{ secrets.GPG_KEY_PASSWORD }}" \
145145
-Psonatype.username="${{ secrets.SONATYPE_USERNAME }}" \
146146
-Psonatype.password="${{ secrets.SONATYPE_PASSWORD }}" \
147-
-Dorg.gradle.jvmargs=-Xmx50g \
147+
-Dorg.gradle.jvmargs="-Xmx50g -Xss2048k" \
148148
-Dorg.gradle.workers.max=1 \
149149
-Dorg.gradle.daemon=false \
150150
-Pkotlin.compiler.execution.strategy=in-process \

.github/workflows/publish_to_maven_local.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
runs-on: [ ubuntu-latest ]
8080
- provider: gitlab
8181
major-version: 8
82-
runs-on: [ self-hosted, active ]
82+
runs-on: [ ubuntu-latest ]
8383
- provider: digitalocean
8484
major-version: 4
8585
runs-on: [ ubuntu-latest ]
@@ -121,7 +121,7 @@ jobs:
121121
id: publish-to-maven-local
122122
run: |
123123
./gradlew publishPulumi${{ matrix.provider }}${{ matrix.major-version }}PublicationToMavenLocal \
124-
-Dorg.gradle.jvmargs=-Xmx50g \
124+
-Dorg.gradle.jvmargs="-Xmx50g -Xss2048k" \
125125
-Dorg.gradle.workers.max=1 \
126126
-Dorg.gradle.daemon=false \
127127
-Pkotlin.compiler.execution.strategy=in-process \

0 commit comments

Comments
 (0)