Skip to content

Commit

Permalink
version increase
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Mautsch committed May 25, 2024
1 parent 286abd5 commit aac4f7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ tasks.named<BootBuildImage>("bootBuildImage") {
val nativeImageName = "${dockerRegistry}/${project.name}-native" + (if (System.getProperty("os.arch").equals("aarch64")) "-arm64v8" else "") + ":${project.version}"
builder.set(nativeBuilder)
imageName.set(nativeImageName)
environment.set(mapOf("BP_NATIVE_IMAGE" to "true", "BP_JVM_VERSION" to "21", "BP_NATIVE_IMAGE_BUILD_ARGUMENTS" to "-J-Xmx6000m -march=compatibility"))
environment.set(mapOf("BP_NATIVE_IMAGE" to "true", "BP_JVM_VERSION" to "21", "BP_NATIVE_IMAGE_BUILD_ARGUMENTS" to "-J-Xmx7000m -march=compatibility"))
doLast {
exec { commandLine("/bin/sh", "-c", "docker run --rm $nativeImageName -check-integrity") }
exec { commandLine("/bin/sh", "-c", "docker push $nativeImageName") }
Expand Down

0 comments on commit aac4f7e

Please sign in to comment.