Skip to content

Commit 5c9d4d8

Browse files
Merge pull request #10696 from griggt/zio-update
Community build: update zio to latest upstream
2 parents 453ae27 + 70c46b3 commit 5c9d4d8

File tree

5 files changed

+17
-2
lines changed

5 files changed

+17
-2
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,3 +174,6 @@
174174
[submodule "community-build/community-projects/scalatestplus-junit"]
175175
path = community-build/community-projects/scalatestplus-junit
176176
url = https://github.com/dotty-staging/scalatestplus-junit.git
177+
[submodule "community-build/community-projects/izumi-reflect"]
178+
path = community-build/community-projects/izumi-reflect
179+
url = https://github.com/dotty-staging/izumi-reflect.git
Submodule zio updated 579 files

community-build/src/scala/dotty/communitybuild/projects.scala

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ object Versions:
4040
val discipline = "1.1.3-SNAPSHOT"
4141
val disciplineMunit = "1.0.3+DOTTY-SNAPSHOT"
4242
val disciplineSpecs2 = "1.1.3-SNAPSHOT"
43+
val izumiReflect = "1.0.0-SNAPSHOT"
4344
val scalacheck = "1.15.2-SNAPSHOT"
4445
val scalatest = "3.2.3"
4546
val munit = "0.7.19+DOTTY-SNAPSHOT"
@@ -147,6 +148,7 @@ final case class SbtCommunityProject(
147148
s""""org.typelevel" %% "cats-mtl-laws_sjs1" % "${Versions.catsMtl}"""",
148149
s""""org.typelevel" %% "coop" % "${Versions.coop}"""",
149150
s""""org.typelevel" %% "coop_sjs1" % "${Versions.coop}"""",
151+
s""""dev.zio" %% "izumi-reflect" % "${Versions.izumiReflect}"""",
150152
)
151153

152154
private val baseCommand =
@@ -395,7 +397,8 @@ object projects:
395397
lazy val zio = SbtCommunityProject(
396398
project = "zio",
397399
sbtTestCommand = "testJVMDotty",
398-
sbtDocCommand = forceDoc("coreJVM"),
400+
sbtDocCommand = forceDoc("coreJVM"),
401+
dependencies = List(izumiReflect)
399402
)
400403

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

621+
lazy val izumiReflect = SbtCommunityProject(
622+
project = "izumi-reflect",
623+
sbtTestCommand = "test",
624+
sbtPublishCommand = "publishLocal",
625+
dependencies = List(scalatest)
626+
)
627+
618628
end projects
619629

620630
def allProjects = projects.reflectedFields.of[CommunityProject].sortBy(_.project)

community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ class CommunityBuildTestA extends CommunityBuildTest:
8686
@Test def fansi = projects.fansi.run()
8787
@Test def fastparse = projects.fastparse.run()
8888
@Test def geny = projects.geny.run()
89+
@Test def izumiReflect = projects.izumiReflect.run()
8990
@Test def oslib = projects.oslib.run()
9091
// @Test def oslibWatch = projects.oslibWatch.run()
9192
@Test def pprint = projects.pprint.run()

0 commit comments

Comments
 (0)