Skip to content
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

Add cats-effect to the community build #9784

Merged
merged 1 commit into from
Sep 17, 2020
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
8 changes: 8 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,11 @@
[submodule "community-build/community-projects/scas"]
path = community-build/community-projects/scas
url = https://github.com/dotty-staging/scas.git
[submodule "community-build/community-projects/cats-effect-2"]
path = community-build/community-projects/cats-effect-2
url = https://github.com/dotty-staging/cats-effect.git
branch = series/2.x
[submodule "community-build/community-projects/cats-effect-3"]
path = community-build/community-projects/cats-effect-3
url = https://github.com/dotty-staging/cats-effect.git
branch = series/3.x
1 change: 1 addition & 0 deletions community-build/community-projects/cats-effect-2
Submodule cats-effect-2 added at e395f0
1 change: 1 addition & 0 deletions community-build/community-projects/cats-effect-3
Submodule cats-effect-3 added at e7b50f
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,16 @@ object projects:
sbtTestCommand = ";json-schemaJVM/compile;algebraJVM/compile;openapiJVM/compile;http4s-server/compile;http4s-client/compile;play-server/compile;play-client/compile;akka-http-server/compile;akka-http-client/compile"
)

lazy val catsEffect2 = SbtCommunityProject(
project = "cats-effect-2",
sbtTestCommand = "test"
)

lazy val catsEffect3 = SbtCommunityProject(
project = "cats-effect-3",
sbtTestCommand = "testIfRelevant"
)

end projects

@Category(Array(classOf[TestCategory]))
Expand Down Expand Up @@ -363,6 +373,8 @@ class CommunityBuildTest:

@Test def algebra = projects.algebra.run()
@Test def betterfiles = projects.betterfiles.run()
@Test def catsEffect2 = projects.catsEffect2.run()
@Test def catsEffect3 = projects.catsEffect3.run()
@Test def dottyCpsAsync = projects.dottyCpsAsync.run()
@Test def effpi = projects.effpi.run()
@Test def endpoints4s = projects.endpoints4s.run()
Expand Down
1 change: 1 addition & 0 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -1260,6 +1260,7 @@ object Build {
(publishLocal in `dotty-compiler-bootstrapped`).value
(publishLocal in `sbt-dotty`).value
(publishLocal in `dotty-bootstrapped`).value
(publishLocal in `dotty-library-bootstrappedJS`).value
// (publishLocal in `dotty-staging`).value
val pluginText =
s"""updateOptions in Global ~= (_.withLatestSnapshots(false))
Expand Down