Skip to content

Commit

Permalink
Increased stack size to 4M.
Browse files Browse the repository at this point in the history
  • Loading branch information
robby-phd committed Mar 17, 2024
1 parent 49de6ff commit 722e30e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def compile(): Unit = {
didCompile = T
tipe()
println("Compiling ...")
proc"java -Xss2M -jar $sireumJar proyek compile --project $projectStandalone $home".console.echo.runCheck()
proc"java -jar $sireumJar proyek compile --project $projectStandalone $home".console.echo.runCheck()
println()
}
}
Expand All @@ -137,8 +137,8 @@ def compile(): Unit = {
def test(): Unit = {
compile()
println("Running shared tests ...")
proc"java -Xss2M -jar $sireumJar proyek test --project $projectStandalone --packages org.sireum $home org.sireum.logika".
env(ISZ("JAVA_OPTS" ~> "-Xss2M")).console.echo.runCheck()
proc"java -Xss4M -jar $sireumJar proyek test --project $projectStandalone --packages org.sireum $home org.sireum.logika".
console.echo.runCheck()
println()
}

Expand Down

0 comments on commit 722e30e

Please sign in to comment.