Skip to content

Commit 783bd79

Browse files
committed
Update some Community Build B projects
Updated projects: cats cats-effect-3 cats-mtl coops discipline discipline-munit discipline-specs2 fs2 http4s munit munit-cats-effect scalacheck scalacheck-effect scalatest Added project: munit-scalacheck
1 parent 5b4b5c2 commit 783bd79

File tree

17 files changed

+39
-27
lines changed

17 files changed

+39
-27
lines changed

Diff for: .gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -221,3 +221,6 @@
221221
[submodule "community-build/community-projects/shapeless-3"]
222222
path = community-build/community-projects/shapeless-3
223223
url = https://github.com/dotty-staging/shapeless-3.git
224+
[submodule "community-build/community-projects/munit-scalacheck"]
225+
path = community-build/community-projects/munit-scalacheck
226+
url = https://github.com/dotty-staging/munit-scalacheck.git

Diff for: community-build/community-projects/cats

Submodule cats updated 575 files

Diff for: community-build/community-projects/cats-effect-3

Submodule cats-effect-3 updated 543 files

Diff for: community-build/community-projects/cats-mtl

Submodule cats-mtl updated 66 files

Diff for: community-build/community-projects/fs2

Submodule fs2 updated 293 files

Diff for: community-build/community-projects/http4s

Submodule http4s updated 396 files

Diff for: community-build/community-projects/munit

Submodule munit updated 245 files

Diff for: community-build/community-projects/munit-cats-effect

Submodule munit-cats-effect updated 31 files

Diff for: community-build/community-projects/munit-scalacheck

Submodule munit-scalacheck added at f2c3622

Diff for: community-build/community-projects/scalacheck

Submodule scalacheck updated 87 files

Diff for: community-build/community-projects/scalatest

Submodule scalatest updated 1768 files

Diff for: community-build/src/scala/dotty/communitybuild/projects.scala

+21-13
Original file line numberDiff line numberDiff line change
@@ -397,12 +397,20 @@ object projects:
397397

398398
lazy val munit = SbtCommunityProject(
399399
project = "munit",
400-
sbtTestCommand = "testsJVM/test;testsJS/test;",
401-
sbtPublishCommand = "munitJVM/publishLocal; munitJS/publishLocal; munitScalacheckJVM/publishLocal; munitScalacheckJS/publishLocal; junit/publishLocal",
400+
sbtTestCommand = "testsJVM/test;testsJS/test;munitDiffJVM/test;munitDiffJS/test",
401+
sbtPublishCommand = "munitJVM/publishLocal; munitJS/publishLocal; munitDiffJVM/publishLocal; munitDiffJS/publishLocal; junit/publishLocal",
402402
sbtDocCommand = "junit/doc; munitJVM/doc",
403403
dependencies = List(scalacheck)
404404
)
405405

406+
lazy val munitScalacheck = SbtCommunityProject(
407+
project = "munit-scalacheck",
408+
sbtTestCommand = "testsJVM/test;testsJS/test;",
409+
sbtPublishCommand = "munitScalacheckJVM/publishLocal; munitScalacheckJS/publishLocal",
410+
sbtDocCommand = "munitScalacheckJVM/doc",
411+
dependencies = List(munit, scalacheck)
412+
)
413+
406414
lazy val scodecBits = SbtCommunityProject(
407415
project = "scodec-bits",
408416
sbtTestCommand = "coreJVM/test;coreJS/test",
@@ -462,7 +470,7 @@ object projects:
462470
lazy val catsEffect3 = SbtCommunityProject(
463471
project = "cats-effect-3",
464472
sbtTestCommand = "ciJVM",
465-
sbtPublishCommand = "publishLocal",
473+
sbtPublishCommand = "coreJVM/publishLocal; coreJS/publishLocal; kernelJVM/publishLocal; kernelJS/publishLocal; stdJVM/publishLocal; stdJS/publishLocal",
466474
sbtDocCommand = ";coreJVM/doc ;lawsJVM/doc ;kernelJVM/doc",
467475
dependencies = List(cats, coop, disciplineSpecs2, scalacheck)
468476
)
@@ -505,12 +513,12 @@ object projects:
505513
project = "discipline-munit",
506514
sbtTestCommand = "coreJVM/test;coreJS/test",
507515
sbtPublishCommand = "coreJVM/publishLocal;coreJS/publishLocal",
508-
dependencies = List(discipline, munit)
516+
dependencies = List(discipline, munit, munitScalacheck)
509517
)
510518

511519
lazy val disciplineSpecs2 = SbtCommunityProject(
512520
project = "discipline-specs2",
513-
sbtTestCommand = "test",
521+
sbtTestCommand = "coreJVM/test;coreJS/test",
514522
sbtPublishCommand = "coreJVM/publishLocal;coreJS/publishLocal",
515523
dependencies = List(discipline),
516524
scalacOptions = SbtCommunityProject.scalacOptions.filter(_ != "-Wsafe-init")
@@ -524,8 +532,8 @@ object projects:
524532

525533
lazy val cats = SbtCommunityProject(
526534
project = "cats",
527-
sbtTestCommand = "set Global/scalaJSStage := FastOptStage;rootJVM/test;rootJS/test",
528-
sbtPublishCommand = "rootJVM/publishLocal;rootJS/publishLocal",
535+
sbtTestCommand = "set Global/scalaJSStage := FastOptStage;catsJVM/test;catsJS/test",
536+
sbtPublishCommand = "catsJVM/publishLocal;catsJS/publishLocal",
529537
dependencies = List(discipline, disciplineMunit, scalacheck, simulacrumScalafixAnnotations),
530538
scalacOptions = SbtCommunityProject.scalacOptions.filter(_ != "-Wsafe-init") // disable -Ysafe-init or -Wsafe-init, due to -Xfatal-warning
531539
)
@@ -539,7 +547,7 @@ object projects:
539547

540548
lazy val coop = SbtCommunityProject(
541549
project = "coop",
542-
sbtTestCommand = "test",
550+
sbtTestCommand = "rootJVM/test;rootJS/test",
543551
sbtPublishCommand = "coreJVM/publishLocal;coreJS/publishLocal",
544552
dependencies = List(cats, catsMtl)
545553
)
@@ -677,16 +685,16 @@ object projects:
677685

678686
lazy val munitCatsEffect = SbtCommunityProject(
679687
project = "munit-cats-effect",
680-
sbtTestCommand = "ce3JVM/test; ce3JS/test",
681-
sbtPublishCommand = "ce3JVM/publishLocal; ce3JS/publishLocal",
688+
sbtTestCommand = "rootJVM/test; rootJS/test",
689+
sbtPublishCommand = "rootJVM/publishLocal; rootJS/publishLocal",
682690
dependencies = List(munit, catsEffect3)
683691
)
684692

685693
lazy val scalacheckEffect = SbtCommunityProject(
686694
project = "scalacheck-effect",
687-
sbtTestCommand = "test",
688-
sbtPublishCommand = "publishLocal",
689-
dependencies = List(cats, catsEffect3, munit, scalacheck)
695+
sbtTestCommand = "rootJVM/test; rootJS/test",
696+
sbtPublishCommand = "rootJVM/publishLocal; rootJS/publishLocal",
697+
dependencies = List(cats, catsEffect3, munit, munitScalacheck, scalacheck)
690698
)
691699

692700
lazy val fs2 = SbtCommunityProject(

0 commit comments

Comments
 (0)