Skip to content

Commit

Permalink
Merge pull request #9784 from vasilmkd/cats-effect
Browse files Browse the repository at this point in the history
Add cats-effect to the community build
  • Loading branch information
anatoliykmetyuk authored Sep 17, 2020
2 parents 0c8c115 + 744ee82 commit 5435e68
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 0 deletions.
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 @@ -1265,6 +1265,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

0 comments on commit 5435e68

Please sign in to comment.