Skip to content

Commit

Permalink
More formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
noelwelsh committed Dec 10, 2023
1 parent e2f4ff7 commit 9069076
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ Global / onChangedBuildSource := ReloadOnSourceChanges

val commonSettings = Seq(
libraryDependencies ++= Seq(
"org.typelevel" %% "cats-core" % "2.10.0",
"org.typelevel" %% "cats-effect" % "3.5.2",
"org.scalameta" %% "munit" % "0.7.29" % Test,
"org.typelevel" %% "munit-cats-effect-3" % "1.0.7" % Test,
"org.typelevel" %% "cats-core" % "2.10.0",
"org.typelevel" %% "cats-effect" % "3.5.2",
"org.scalameta" %% "munit" % "0.7.29" % Test,
"org.typelevel" %% "munit-cats-effect-3" % "1.0.7" % Test
)
)

// Run this command (build) to do everything involved in building the project
commands += Command.command("build") { state =>
"clean" ::
"clean" ::
"compile" ::
"test" ::
"scalafixAll" ::
Expand All @@ -39,13 +39,15 @@ lazy val core = project.in(file("core")).settings(commonSettings)
lazy val benchmarks = project
.in(file("benchmarks"))
.settings(
javaOptions ++= Seq("-Xbatch",
"-XX:+UnlockExperimentalVMOptions",
"-XX:+UnlockDiagnosticVMOptions",
"-XX:-TieredCompilation")
// "-XX:MaxInlineSize=300")
// "-XX:+LogCompilation")
// "-XX:CompileThreshold=1000")
javaOptions ++= Seq(
"-Xbatch",
"-XX:+UnlockExperimentalVMOptions",
"-XX:+UnlockDiagnosticVMOptions",
"-XX:-TieredCompilation"
)
// "-XX:MaxInlineSize=300")
// "-XX:+LogCompilation")
// "-XX:CompileThreshold=1000")
// "-XX:CompileCommand=print,arithmetic/OptimizedStack2$StackMachine.eval",
// "-XX:CompileCommand=print,arithmetic/OptimizedStack$StackMachine.loop*")
)
Expand Down

0 comments on commit 9069076

Please sign in to comment.