Skip to content

Add parboiled2 to community build #14911

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 4 commits into from
May 4, 2022
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 @@ -219,3 +219,6 @@
[submodule "community-build/community-projects/http4s"]
path = community-build/community-projects/http4s
url = https://github.com/dotty-staging/http4s.git
[submodule "community-build/community-projects/parboiled2"]
path = community-build/community-projects/parboiled2
url = https://github.com/dotty-staging/parboiled2.git
1 change: 1 addition & 0 deletions community-build/community-projects/parboiled2
Submodule parboiled2 added at 628127
11 changes: 10 additions & 1 deletion community-build/src/scala/dotty/communitybuild/projects.scala
Original file line number Diff line number Diff line change
Expand Up @@ -761,6 +761,14 @@ object projects:
dependencies = List(cats, catsEffect3, fs2, disciplineMunit, scalacheckEffect)
)

lazy val parboiled2 = SbtCommunityProject(
project = "parboiled2",
sbtTestCommand = "parboiledCoreJVM/test; parboiledJVM/test",
sbtPublishCommand = "publishLocal",
scalacOptions = SbtCommunityProject.scalacOptions.filter(_ != "-Xcheck-macros"),
dependencies = List(utest, scalacheck)
)

end projects

def allProjects = List(
Expand Down Expand Up @@ -841,7 +849,8 @@ def allProjects = List(
projects.specs2,
projects.coop,
projects.spire,
projects.http4s
projects.http4s,
projects.parboiled2,
)

lazy val projectMap = allProjects.groupBy(_.project)
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ class CommunityBuildTestC:
@Test def onnxScala = projects.onnxScala.run()
@Test def oslib = projects.oslib.run()
// @Test def oslibWatch = projects.oslibWatch.run()
@Test def parboiled2 = projects.parboiled2.run()
@Test def playJson = projects.playJson.run()
@Test def pprint = projects.pprint.run()
@Test def protoquill = projects.protoquill.run()
Expand Down