Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ final case class MillCommunityProject(
override val docCommand = null
// uncomment once mill is released
// if ignoreDocs then null else s"$baseCommand.docJar"
override val runCommandsArgs = List("-i", "-D", s"dottyVersion=$compilerVersion", "--no-server")
override val runCommandsArgs = List("-i", "-D", s"dottyVersion=$compilerVersion")

final case class SbtCommunityProject(
project: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ class CommunityBuildTestC:
@Test def scalatestplusScalacheck = projects.scalatestplusScalacheck.run()
@Test def scalaXml = projects.scalaXml.run()
@Test def scalaz = projects.scalaz.run()
@Test def scas = projects.scas.run()
// mill 1.0.5 fails to build, cannot find scala-library artifact on classpath
// @Test def scas = projects.scas.run()
@Test def sconfig = projects.sconfig.run()
@Test def shapeless3 = projects.shapeless3.run()
@Test def sourcecode = projects.sourcecode.run()
Expand Down
1 change: 1 addition & 0 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3559,6 +3559,7 @@ object Build {
(`scala3-sbt-bridge` / publishLocal).value
(`scala3-interfaces` / publishLocal).value
(`tasty-core-bootstrapped` / publishLocal).value
(`scala-library-bootstrapped` / publishLocal).value
(`scala3-library-bootstrapped` / publishLocal).value
(`scala3-tasty-inspector` / publishLocal).value
(`scaladoc` / publishLocal).value
Expand Down
Loading