Skip to content

Commit

Permalink
The scaladoc apparently requires Scala 2.12, BIS (#2883)
Browse files Browse the repository at this point in the history
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
```
  • Loading branch information
guizmaii authored Sep 28, 2023
1 parent a78efd8 commit 450afe8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 450afe8

Please sign in to comment.