Skip to content

Commit 66098f8

Browse files
committed
WIP: skip -bootstrapped projects in bloop export
1 parent 930c22b commit 66098f8

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

project/Build.scala

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,8 @@ object Build {
288288
// Settings used when compiling dotty with a non-bootstrapped dotty
289289
lazy val commonBootstrappedSettings = commonDottySettings ++ Seq(
290290
bspEnabled := false,
291+
bloop.integrations.sbt.BloopKeys.bloopGenerate in Compile := None,
292+
bloop.integrations.sbt.BloopKeys.bloopGenerate in Test := None,
291293
unmanagedSourceDirectories in Compile += baseDirectory.value / "src-bootstrapped",
292294

293295
version := dottyVersion,

project/plugins.sbt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@ addSbtPlugin("org.xerial.sbt" % "sbt-pack" % "0.13")
1313
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.3.2")
1414

1515
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.9.0")
16+
17+
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.4.8") // allows setting `bloopGenerate`

0 commit comments

Comments
 (0)