diff --git a/community-build/src/scala/dotty/communitybuild/projects.scala b/community-build/src/scala/dotty/communitybuild/projects.scala index 527b4f85c961..94ee5ad44a8c 100644 --- a/community-build/src/scala/dotty/communitybuild/projects.scala +++ b/community-build/src/scala/dotty/communitybuild/projects.scala @@ -358,14 +358,6 @@ object projects: // sbtDocCommand = "dotty-community-build/doc" ) - lazy val stdLib213 = SbtCommunityProject( - project = "stdLib213", - extraSbtArgs = List("-Dscala.build.compileWithDotty=true"), - sbtTestCommand = """set Global / fatalWarnings := false; library/compile""", - sbtPublishCommand = """set Global / fatalWarnings := false; set library/Compile/packageDoc/publishArtifact := false; library/publishLocal""", - // sbtDocCommand = "library/doc" // Does no compile? No idea :/ - ) - lazy val shapeless3 = SbtCommunityProject( project = "shapeless-3", sbtTestCommand = "testJVM; testJS", @@ -793,7 +785,6 @@ def allProjects = List( projects.scalaPB, projects.minitest, projects.fastparse, - projects.stdLib213, projects.shapeless3, projects.xmlInterpolator, projects.effpi, diff --git a/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala b/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala index 6a4f832ce05a..9a4965577cf1 100644 --- a/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala +++ b/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala @@ -95,7 +95,6 @@ class CommunityBuildTestC: @Test def sourcecode = projects.sourcecode.run() @Test def specs2 = projects.specs2.run() - @Test def stdLib213 = projects.stdLib213.run() @Test def ujson = projects.ujson.run() @Test def upickle = projects.upickle.run() @Test def utest = projects.utest.run()