Skip to content

Commit

Permalink
Use less memory
Browse files Browse the repository at this point in the history
So that it can run on the GHA runner.
  • Loading branch information
erikvanoosten committed Oct 20, 2024
1 parent 69384ca commit b2d43da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

name: CI
env:
JDK_JAVA_OPTIONS: -XX:+PrintCommandLineFlags -Xms6G -Xmx4G -Xss4M -XX:+UseG1GC
JDK_JAVA_OPTIONS: -XX:+PrintCommandLineFlags -Xmx4G -Xss2M -XX:+UseG1GC
'on':
workflow_dispatch: {}
release:
Expand Down
3 changes: 1 addition & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
//import MimaSettings.mimaSettings

val V = new {
// val betterMonadicFor = "0.3.1"
val brotli = "0.1.2"
val commonsCompress = "1.27.1"
val logbackClassic = "1.5.8"
Expand Down Expand Up @@ -30,7 +29,7 @@ inThisBuild(
crossScalaVersions := List(scala3.value, scala213.value, scala212.value),
ciEnabledBranches := Seq("master"),
run / fork := true,
ciJvmOptions ++= Seq("-Xms6G", "-Xmx4G", "-Xss4M", "-XX:+UseG1GC"),
ciJvmOptions ++= Seq("-Xmx4G", "-Xss2M", "-XX:+UseG1GC"),
scalafixDependencies ++= List(
"com.github.vovapolu" %% "scaluzzi" % "0.1.23",
"io.github.ghostbuster91.scalafix-unified" %% "unified" % "0.0.9",
Expand Down

0 comments on commit b2d43da

Please sign in to comment.