File tree Expand file tree Collapse file tree 4 files changed +13
-0
lines changed Expand file tree Collapse file tree 4 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 181
181
path = community-build/community-projects/perspective
182
182
url = https://github.com/dotty-staging/perspective.git
183
183
branch = dotty/nightly
184
+ [submodule "community-build/community-projects/akka "]
185
+ path = community-build/community-projects/akka
186
+ url = https://github.com/dotty-staging/akka.git
Original file line number Diff line number Diff line change @@ -648,6 +648,13 @@ object projects:
648
648
dependencies = List (cats)
649
649
)
650
650
651
+ lazy val akka = SbtCommunityProject (
652
+ project = " akka" ,
653
+ extraSbtArgs = List (s " -Dakka.build.scalaVersion= $compilerVersion" ),
654
+ sbtTestCommand = " set every targetSystemJdk := true; akka-actor-tests/Test/compile" ,
655
+ dependencies = List (scalatest, scalatestplusJunit, scalatestplusScalacheck)
656
+ )
657
+
651
658
end projects
652
659
653
660
def allProjects = List (
@@ -712,6 +719,7 @@ def allProjects = List(
712
719
projects.scissLucre,
713
720
projects.izumiReflect,
714
721
projects.perspective,
722
+ projects.akka,
715
723
)
716
724
717
725
lazy val projectMap = allProjects.groupBy(_.project)
Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ end CommunityBuildTest
86
86
87
87
@ Category (Array (classOf [TestCategory ]))
88
88
class CommunityBuildTestA extends CommunityBuildTest :
89
+ @ Test def akka = projects.akka.run()
89
90
@ Test def endpoints4s = projects.endpoints4s.run()
90
91
@ Test def fansi = projects.fansi.run()
91
92
@ Test def fastparse = projects.fastparse.run()
You can’t perform that action at this time.
0 commit comments