From f45865e517078c66db8ecbe9a42efe1d890d143a Mon Sep 17 00:00:00 2001 From: Ruslan Shevchenko Date: Sun, 26 Apr 2020 18:15:34 +0300 Subject: [PATCH 1/2] add dotty-cps-async to community build --- .gitmodules | 3 +++ community-build/community-projects/dotty-cps-async | 1 + .../scala/dotty/communitybuild/CommunityBuildTest.scala | 6 ++++++ 3 files changed, 10 insertions(+) create mode 160000 community-build/community-projects/dotty-cps-async diff --git a/.gitmodules b/.gitmodules index e799676be03f..35400e60568e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -85,3 +85,6 @@ [submodule "community-build/community-projects/scala-parser-combinators"] path = community-build/community-projects/scala-parser-combinators url = https://github.com/dotty-staging/scala-parser-combinators.git +[submodule "community-build/community-projects/dotty-cps-async"] + path = community-build/community-projects/dotty-cps-async + url = https://github.com/rssh/dotty-cps-async.git diff --git a/community-build/community-projects/dotty-cps-async b/community-build/community-projects/dotty-cps-async new file mode 160000 index 000000000000..13e2d4e14ac3 --- /dev/null +++ b/community-build/community-projects/dotty-cps-async @@ -0,0 +1 @@ +Subproject commit 13e2d4e14ac3b9be402fa02e056980abc7a1cb5a diff --git a/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala b/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala index c6ee5d493f3f..deffacdc2e7c 100644 --- a/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala +++ b/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala @@ -267,6 +267,11 @@ object projects: sbtTestCommand = "parserCombinators/test", ) + lazy val dottyCpsAsync = SbtCommunityProject( + project = "dotty-cps-async", + sbtTestCommand = "test", + ) + end projects @Category(Array(classOf[TestCategory])) @@ -356,6 +361,7 @@ class CommunityBuildTest: @Test def scodecBits = projects.scodecBits.run() @Test def scodec = projects.scodec.run() @Test def scalaParserCombinators = projects.scalaParserCombinators.run() + @Test def dottyCpsAsync = projects.dottyCpsAsync.run() end CommunityBuildTest class TestCategory From 0deeed054aa900a4db7b047f6f8a0c6bb1ea23e5 Mon Sep 17 00:00:00 2001 From: Ruslan Shevchenko Date: Mon, 27 Apr 2020 17:00:52 +0300 Subject: [PATCH 2/2] changed organization to dotty-staging --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 35400e60568e..50cc7e7e399b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -87,4 +87,4 @@ url = https://github.com/dotty-staging/scala-parser-combinators.git [submodule "community-build/community-projects/dotty-cps-async"] path = community-build/community-projects/dotty-cps-async - url = https://github.com/rssh/dotty-cps-async.git + url = https://github.com/dotty-staging/dotty-cps-async.git