From 30b0893a79b8fa9bd9a761955caa037a9010507e Mon Sep 17 00:00:00 2001 From: jules Ivanic Date: Thu, 28 Sep 2023 16:25:13 +0400 Subject: [PATCH] The scaladoc apparently requires Scala 2.12, BIS See: https://github.com/zio/zio-quill/actions/runs/6337872463/job/17215027348#logs Error: ```scala [info] Main Scala API documentation to /home/runner/work/zio-quill/zio-quill/zio-quill-docs/target/scala-2.12/unidoc... java.io.IOException: Scala signature package has wrong version expected: 5.0 found: 5.2 in package.class ``` --- build.sbt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/build.sbt b/build.sbt index b7bfe34b81..ef922dabac 100644 --- a/build.sbt +++ b/build.sbt @@ -701,13 +701,13 @@ lazy val docs = project projectName := "ZIO Quill", mainModuleName := (`quill-core` / moduleName).value, // With Scala 2.12, these projects doc isn't compiling. - //ScalaUnidoc / unidoc / unidocProjectFilter := inAnyProject -- inProjects( - // `quill-engine`, - // `quill-core`, - // `quill-cassandra-monix`, - // `quill-orientdb`, - // `quill-doobie` - //), + ScalaUnidoc / unidoc / unidocProjectFilter := inAnyProject -- inProjects( + `quill-engine`, + `quill-core`, + `quill-cassandra-monix`, + `quill-orientdb`, + `quill-doobie` + ), projectStage := ProjectStage.ProductionReady, checkArtifactBuildProcessWorkflowStep := None, docsPublishBranch := "master",