Skip to content

Add PSBP (old name: PDBP) to community build #11722

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@
[submodule "community-build/community-projects/stdLib213"]
path = community-build/community-projects/stdLib213
url = https://github.com/dotty-staging/scala
[submodule "community-build/community-projects/pdbp"]
path = community-build/community-projects/pdbp
url = https://github.com/dotty-staging/pdbp
[submodule "community-build/community-projects/sourcecode"]
path = community-build/community-projects/sourcecode
url = https://github.com/dotty-staging/sourcecode
Expand Down Expand Up @@ -193,3 +190,6 @@
[submodule "community-build/community-projects/cask"]
path = community-build/community-projects/cask
url = https://github.com/dotty-staging/cask.git
[submodule "community-build/community-projects/psbp"]
path = community-build/community-projects/psbp
url = https://github.com/dotty-staging/psbp-library.github.io
1 change: 0 additions & 1 deletion community-build/community-projects/pdbp
Submodule pdbp deleted from 0c1fe0
1 change: 1 addition & 0 deletions community-build/community-projects/psbp
Submodule psbp added at 8f08f6
10 changes: 5 additions & 5 deletions community-build/src/scala/dotty/communitybuild/projects.scala
Original file line number Diff line number Diff line change
Expand Up @@ -362,11 +362,10 @@ object projects:
sbtDocCommand = "set ThisBuild / useEffpiPlugin := false; effpi/doc; benchmarks/doc; examples/doc; pluginBenchmarks/doc",
)

// TODO @odersky? It got broken by #5458
// val pdbp = test(
// project = "pdbp",
// sbtTestCommand = "compile",
// )
val psbp = SbtCommunityProject(
project = "psbp",
sbtTestCommand = "compile",
)

lazy val sconfig = SbtCommunityProject(
project = "sconfig",
Expand Down Expand Up @@ -709,6 +708,7 @@ def allProjects = List(
projects.akka,
projects.protoquill,
projects.onnxScala,
projects.psbp,
)

lazy val projectMap = allProjects.groupBy(_.project)
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ class CommunityBuildTestA extends CommunityBuildTest:
// @Test def scissSpan = projects.scissSpan .run()
@Test def scissLucre = projects.scissLucre.run()
@Test def zio = projects.zio.run()
@Test def psbp = projects.psbp.run()
end CommunityBuildTestA

@Category(Array(classOf[TestCategory]))
Expand Down