Skip to content

Commit 5b3a98a

Browse files
Merge pull request #10543 from eed3si9n/wip/verify
Add Verify to Community Build
2 parents f57055c + ff540e1 commit 5b3a98a

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -117,3 +117,6 @@
117117
[submodule "community-build/community-projects/scala-collection-compat"]
118118
path = community-build/community-projects/scala-collection-compat
119119
url = https://github.com/dotty-staging/scala-collection-compat.git
120+
[submodule "community-build/community-projects/verify"]
121+
path = community-build/community-projects/verify
122+
url = https://github.com/dotty-staging/nanotest-strawman.git
Submodule verify added at c6646b4

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

+5
Original file line numberDiff line numberDiff line change
@@ -360,4 +360,9 @@ object projects:
360360
sbtTestCommand = "compat30/test",
361361
)
362362

363+
lazy val verify = SbtCommunityProject(
364+
project = "verify",
365+
sbtTestCommand = "verifyJVM/test",
366+
)
367+
363368
end projects

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

+1
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ class CommunityBuildTestB extends CommunityBuildTest:
125125
@Test def sconfig = projects.sconfig.run()
126126
@Test def shapeless = projects.shapeless.run()
127127
@Test def stdLib213 = projects.stdLib213.run()
128+
@Test def verify = projects.verify.run()
128129
@Test def xmlInterpolator = projects.xmlInterpolator.run()
129130
@Test def zio = projects.zio.run()
130131
end CommunityBuildTestB

0 commit comments

Comments
 (0)