Skip to content

Commit

Permalink
tmp 2
Browse files Browse the repository at this point in the history
  • Loading branch information
zoobestik committed Mar 5, 2025
1 parent 492c954 commit bb4d13f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions aws-sam/samconfig.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version = 0.1
[default.deploy.parameters]
stack_name = "kotlin-compose-compiler"
stack_name = "kotlin-compose-ic"
resolve_s3 = true
s3_prefix = "kotlin-compose-compiler"
s3_prefix = "kotlin-compose-ic"
region = "eu-west-1"
confirm_changeset = true
capabilities = "CAPABILITY_IAM"
Expand Down
11 changes: 9 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ plugins {
alias(libs.plugins.kotlin.plugin.spring)
}

develocity {
buildScan {
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = "yes"
}
}

kotlin.jvmToolchain {
languageVersion.set(JavaLanguageVersion.of(17))
vendor.set(JvmVendorSpec.AMAZON)
Expand Down Expand Up @@ -188,9 +195,9 @@ fun buildRunFile() {
/* language=sh */
"""
#!/usr/bin/env sh
export COMPILER_SERVER_TMP_PATH="${'$'}(mktemp -d)"
exec java -noverify \
-XX:+UseParallelGC -XX:-UseCompressedOops \
-Djava.io.tmpdir="${'$'}COMPILER_SERVER_TMP_PATH" \
Expand Down

0 comments on commit bb4d13f

Please sign in to comment.