Skip to content

Commit

Permalink
Add parboiled2 to community build (scala#14911)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrudolph authored May 4, 2022
1 parent 9b40981 commit 26f9e77
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
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

0 comments on commit 26f9e77

Please sign in to comment.