Skip to content

Commit

Permalink
Try extending memory for subproject
Browse files Browse the repository at this point in the history
Signed-off-by: Tomoyuki Morita <[email protected]>
  • Loading branch information
ykmr1224 committed Nov 13, 2024
1 parent d03c7ee commit f387535
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ lazy val commonSettings = Seq(
// Enable HTML report and output to separate folder per package
Test / testOptions += Tests.Argument(TestFrameworks.ScalaTest, "-h", s"target/test-reports/${name.value}"),
Test / test := ((Test / test) dependsOn testScalastyle).value,
Test / javaOptions += "-Xmx2G",
// Needed for HTML report
libraryDependencies += "com.vladsch.flexmark" % "flexmark-all" % "0.64.8",
dependencyOverrides ++= Seq(
Expand Down Expand Up @@ -182,6 +181,8 @@ lazy val pplSparkIntegration = (project in file("ppl-spark-integration"))
val oldStrategy = (assembly / assemblyMergeStrategy).value
oldStrategy(x)
},
Test / fork := true,
Test / javaOptions += "-Xmx2G",
assembly / test := (Test / test).value)

lazy val flintSparkIntegration = (project in file("flint-spark-integration"))
Expand Down

0 comments on commit f387535

Please sign in to comment.