From 426fcf73135e40ae5ee1dee5543dfe02d1b3c1f8 Mon Sep 17 00:00:00 2001 From: Eric K Richardson Date: Thu, 26 Dec 2019 16:23:59 -0800 Subject: [PATCH] Add ekrich/sconfig to community-build --- .gitmodules | 3 +++ community-build/community-projects/sconfig | 1 + .../scala/dotty/communitybuild/CommunityBuildTest.scala | 7 +++++++ 3 files changed, 11 insertions(+) create mode 160000 community-build/community-projects/sconfig diff --git a/.gitmodules b/.gitmodules index 24bb46799278..7e960a809d49 100644 --- a/.gitmodules +++ b/.gitmodules @@ -68,3 +68,6 @@ [submodule "community-build/community-projects/upickle"] path = community-build/community-projects/upickle url = https://github.com/dotty-staging/upickle.git +[submodule "community-build/community-projects/sconfig"] + path = community-build/community-projects/sconfig + url = https://github.com/ekrich/sconfig.git diff --git a/community-build/community-projects/sconfig b/community-build/community-projects/sconfig new file mode 160000 index 000000000000..a1579a935f79 --- /dev/null +++ b/community-build/community-projects/sconfig @@ -0,0 +1 @@ +Subproject commit a1579a935f79d34c66a813f0cf71a674c092179b diff --git a/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala b/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala index ce6287bfe3e1..11462dc88146 100644 --- a/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala +++ b/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala @@ -262,6 +262,12 @@ object projects // sbtTestCommand = "compile", // sbtUpdateCommand = "update" // ) + + lazy val sconfig = SbtCommunityProject( + project = "sconfig", + sbtTestCommand = "sconfigJVM/test", + sbtUpdateCommand = "sconfigJVM/update" + ) end projects @Category(Array(classOf[TestCategory])) @@ -335,6 +341,7 @@ class CommunityBuildTest { @Test def xmlInterpolator = projects.xmlInterpolator.run() @Test def semanticdb = projects.semanticdb.run() @Test def effpi = projects.effpi.run() + @Test def sconfig = projects.sconfig.run() } class TestCategory