Skip to content

Commit dfe6f3e

Browse files
Merge pull request #10179 from SethTisue/add-parallel-collections
community build: add scala-parallel-collections
2 parents f3bb4e8 + 4f8fa86 commit dfe6f3e

File tree

4 files changed

+11
-0
lines changed

4 files changed

+11
-0
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -117,3 +117,6 @@
117117
path = community-build/community-projects/cats-effect-3
118118
url = https://github.com/dotty-staging/cats-effect.git
119119
branch = series/3.x
120+
[submodule "community-build/community-projects/scala-parallel-collections"]
121+
path = community-build/community-projects/scala-parallel-collections
122+
url = https://github.com/dotty-staging/scala-parallel-collections.git

community-build/src/scala/dotty/communitybuild/projects.scala

+6
Original file line numberDiff line numberDiff line change
@@ -327,4 +327,10 @@ object projects:
327327
sbtTestCommand = "testIfRelevant"
328328
)
329329

330+
lazy val scalaParallelCollections = SbtCommunityProject(
331+
project = "scala-parallel-collections",
332+
sbtTestCommand = "test",
333+
dependencies = List(scalacheck)
334+
)
335+
330336
end projects

community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala

+1
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ class CommunityBuildTestB extends CommunityBuildTest:
114114
@Test def minitest = projects.minitest.run()
115115
@Test def munit = projects.munit.run()
116116
@Test def scalap = projects.scalap.run()
117+
@Test def scalaParallelCollections = projects.scalaParallelCollections.run()
117118
@Test def scalaParserCombinators = projects.scalaParserCombinators.run()
118119
@Test def ScalaPB = projects.ScalaPB.run()
119120
@Test def scalaXml = projects.scalaXml.run()

0 commit comments

Comments
 (0)