Skip to content

Commit

Permalink
run sbt doc in nightly build for Scala 3 but with without genjavadoc (
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning authored Mar 24, 2024
1 parent 0e947ae commit f71c083
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/nightly-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,11 +167,12 @@ jobs:

- name: Docs
# Docs generation requires JDK 11.
if: ${{ matrix.javaVersion == 11 && matrix.scalaVersion != '3.3'}}
if: ${{ matrix.javaVersion == 11 }}
run: |-
sudo apt-get install graphviz
# genjavadoc does not support Scala 3.x
sbt \
-Dpekko.genjavadoc.enabled=true \
-Dpekko.genjavadoc.enabled={{ matrix.scalaVersion != '3.3' }} \
"+~ ${{ matrix.scalaVersion }} doc"
- name: Publish
Expand Down

0 comments on commit f71c083

Please sign in to comment.