Skip to content

Community build: update zio to latest upstream #10696

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 2 commits into from
Jan 5, 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
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -174,3 +174,6 @@
[submodule "community-build/community-projects/scalatestplus-junit"]
path = community-build/community-projects/scalatestplus-junit
url = https://github.com/dotty-staging/scalatestplus-junit.git
[submodule "community-build/community-projects/izumi-reflect"]
path = community-build/community-projects/izumi-reflect
url = https://github.com/dotty-staging/izumi-reflect.git
1 change: 1 addition & 0 deletions community-build/community-projects/izumi-reflect
Submodule izumi-reflect added at c368dc
2 changes: 1 addition & 1 deletion community-build/community-projects/zio
Submodule zio updated 579 files
12 changes: 11 additions & 1 deletion community-build/src/scala/dotty/communitybuild/projects.scala
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ object Versions:
val discipline = "1.1.3-SNAPSHOT"
val disciplineMunit = "1.0.3+DOTTY-SNAPSHOT"
val disciplineSpecs2 = "1.1.3-SNAPSHOT"
val izumiReflect = "1.0.0-SNAPSHOT"
val scalacheck = "1.15.2-SNAPSHOT"
val scalatest = "3.2.3"
val munit = "0.7.19+DOTTY-SNAPSHOT"
Expand Down Expand Up @@ -147,6 +148,7 @@ final case class SbtCommunityProject(
s""""org.typelevel" %% "cats-mtl-laws_sjs1" % "${Versions.catsMtl}"""",
s""""org.typelevel" %% "coop" % "${Versions.coop}"""",
s""""org.typelevel" %% "coop_sjs1" % "${Versions.coop}"""",
s""""dev.zio" %% "izumi-reflect" % "${Versions.izumiReflect}"""",
)

private val baseCommand =
Expand Down Expand Up @@ -395,7 +397,8 @@ object projects:
lazy val zio = SbtCommunityProject(
project = "zio",
sbtTestCommand = "testJVMDotty",
sbtDocCommand = forceDoc("coreJVM"),
sbtDocCommand = forceDoc("coreJVM"),
dependencies = List(izumiReflect)
)

lazy val munit = SbtCommunityProject(
Expand Down Expand Up @@ -615,6 +618,13 @@ object projects:
dependencies = List(scalaSTM, scissAsyncFile, scissEqual, scissFingerTree, scissLog, scissModel, scissNumbers, scissSerial, scissSpan, scalatest),
)

lazy val izumiReflect = SbtCommunityProject(
project = "izumi-reflect",
sbtTestCommand = "test",
sbtPublishCommand = "publishLocal",
dependencies = List(scalatest)
)

end projects

def allProjects = projects.reflectedFields.of[CommunityProject].sortBy(_.project)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ class CommunityBuildTestA extends CommunityBuildTest:
@Test def fansi = projects.fansi.run()
@Test def fastparse = projects.fastparse.run()
@Test def geny = projects.geny.run()
@Test def izumiReflect = projects.izumiReflect.run()
@Test def oslib = projects.oslib.run()
// @Test def oslibWatch = projects.oslibWatch.run()
@Test def pprint = projects.pprint.run()
Expand Down