Skip to content

Add protoquill to community-build #11611

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -184,3 +184,6 @@
[submodule "community-build/community-projects/akka"]
path = community-build/community-projects/akka
url = https://github.com/dotty-staging/akka.git
[submodule "community-build/community-projects/protoquill"]
path = community-build/community-projects/protoquill
url = https://github.com/dotty-staging/protoquill.git
1 change: 1 addition & 0 deletions community-build/community-projects/protoquill
Submodule protoquill added at 524649
9 changes: 9 additions & 0 deletions community-build/src/scala/dotty/communitybuild/projects.scala
Original file line number Diff line number Diff line change
Expand Up @@ -598,6 +598,14 @@ object projects:
dependencies = List(scalatest, scalatestplusJunit, scalatestplusScalacheck)
)

lazy val protoquill = SbtCommunityProject(
project = "protoquill",
sbtTestCommand = "test",
sbtPublishCommand = "publishLocal",
dependencies = List(), // TODO add scalatest and pprint (see protoquill/build.sbt)
scalacOptions = List("-language:implicitConversions"), // disabled -Ycheck-init, due to bug in macro
)

end projects

def allProjects = List(
Expand Down Expand Up @@ -663,6 +671,7 @@ def allProjects = List(
projects.izumiReflect,
projects.perspective,
projects.akka,
projects.protoquill,
)

lazy val projectMap = allProjects.groupBy(_.project)
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ class CommunityBuildTestA extends CommunityBuildTest:
@Test def upickle = projects.upickle.run()
@Test def utest = projects.utest.run()
@Test def zio = projects.zio.run()
@Test def protoquill = projects.protoquill.run()

// 'scala-stm' and 'Sciss/Lucre':
// @Test def scissEqual = projects.scissEqual .run()
Expand Down