From 6ed09c36a271c2e8f503a6d973d048607abd2e3c Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Sun, 19 Oct 2025 22:37:42 +0200 Subject: [PATCH 1/3] Don't set --no-server for mill projects, is implied by -i, two cannot be used together This reverts commit ef6a44a8838ba429fcbbb1a4c859b467754ff802. --- community-build/src/scala/dotty/communitybuild/projects.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community-build/src/scala/dotty/communitybuild/projects.scala b/community-build/src/scala/dotty/communitybuild/projects.scala index 7b901ca9e6fb..853e9fcd3f5e 100644 --- a/community-build/src/scala/dotty/communitybuild/projects.scala +++ b/community-build/src/scala/dotty/communitybuild/projects.scala @@ -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, From a08833f2e95cf94ee4f12d1a489700c2009d6924 Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Mon, 20 Oct 2025 00:04:32 +0200 Subject: [PATCH 2/3] Publish `scala-library` as part of `prepareCommunityBuild` --- project/Build.scala | 1 + 1 file changed, 1 insertion(+) diff --git a/project/Build.scala b/project/Build.scala index 9a939f84ed2d..68e10fd3d28b 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -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 From fe26b394dea5357ffcf5e44dcef1f894f884c5ac Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Mon, 20 Oct 2025 01:06:16 +0200 Subject: [PATCH 3/3] Temporary disable scas to unblock the CB --- .../test/scala/dotty/communitybuild/CommunityBuildTest.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala b/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala index f83078f26c36..4591f0914dfd 100644 --- a/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala +++ b/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala @@ -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()