File tree Expand file tree Collapse file tree 4 files changed +14
-0
lines changed Expand file tree Collapse file tree 4 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 184184[submodule "community-build/community-projects/akka "]
185185 path = community-build/community-projects/akka
186186 url = https://github.com/dotty-staging/akka.git
187+ [submodule "community-build/community-projects/protoquill "]
188+ path = community-build/community-projects/protoquill
189+ url = https://github.com/dotty-staging/protoquill.git
Original file line number Diff line number Diff line change @@ -598,6 +598,14 @@ object projects:
598598 dependencies = List (scalatest, scalatestplusJunit, scalatestplusScalacheck)
599599 )
600600
601+ lazy val protoquill = SbtCommunityProject (
602+ project = " protoquill" ,
603+ sbtTestCommand = " test" ,
604+ sbtPublishCommand = " publishLocal" ,
605+ dependencies = List (), // TODO add scalatest and pprint (see protoquill/build.sbt)
606+ scalacOptions = List (" -language:implicitConversions" ), // disabled -Ycheck-init, due to bug in macro
607+ )
608+
601609end projects
602610
603611def allProjects = List (
@@ -663,6 +671,7 @@ def allProjects = List(
663671 projects.izumiReflect,
664672 projects.perspective,
665673 projects.akka,
674+ projects.protoquill,
666675)
667676
668677lazy val projectMap = allProjects.groupBy(_.project)
Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ class CommunityBuildTestA extends CommunityBuildTest:
108108 @ Test def upickle = projects.upickle.run()
109109 @ Test def utest = projects.utest.run()
110110 @ Test def zio = projects.zio.run()
111+ @ Test def protoquill = projects.protoquill.run()
111112
112113 // 'scala-stm' and 'Sciss/Lucre':
113114 // @Test def scissEqual = projects.scissEqual .run()
You can’t perform that action at this time.
0 commit comments