Skip to content

Commit c816471

Browse files
committed
Remove sbt-dotty from community-build tests
1 parent 8bb929c commit c816471

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

community-build/src/scala/dotty/communitybuild/projects.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,15 +113,15 @@ final case class SbtCommunityProject(
113113
override val docCommand =
114114
if sbtDocCommand eq null then null else
115115
val cmd = if sbtDocCommand.startsWith(";") then sbtDocCommand else s";$sbtDocCommand"
116-
s"$baseCommand set every useScaladoc := true; set every doc/logLevel := Level.Warn $cmd "
116+
s"$baseCommand set every doc/logLevel := Level.Warn $cmd "
117117

118118
override val runCommandsArgs: List[String] =
119119
// Run the sbt command with the compiler version and sbt plugin set in the build
120120
val sbtProps = Option(System.getProperty("sbt.ivy.home")) match
121121
case Some(ivyHome) => List(s"-Dsbt.ivy.home=$ivyHome")
122122
case _ => Nil
123123
extraSbtArgs ++ sbtProps ++ List(
124-
"-sbt-version", "1.4.7",
124+
"-sbt-version", "1.5.0-bin-20210302T081602",
125125
"-Dsbt.supershell=false",
126126
s"-Ddotty.communitybuild.dir=$communitybuildDir",
127127
s"--addPluginSbtFile=$sbtPluginFilePath"

project/Build.scala

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1353,7 +1353,6 @@ object Build {
13531353
// (publishLocal in `scala3-staging`).value
13541354
val pluginText =
13551355
s"""updateOptions in Global ~= (_.withLatestSnapshots(false))
1356-
|addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "$sbtDottyVersion")
13571356
|addSbtPlugin("ch.epfl.lamp" % "sbt-community-build" % "$sbtCommunityBuildVersion")
13581357
|addSbtPlugin("org.scala-js" % "sbt-scalajs" % "$scalaJSVersion")""".stripMargin
13591358
IO.write(baseDirectory.value / "sbt-dotty-sbt", pluginText)

0 commit comments

Comments
 (0)