-
Notifications
You must be signed in to change notification settings - Fork 186
some nightly tests with Java 25 #1887
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -117,7 +117,7 @@ jobs: | |
| # binary version is required and Pekko build will set the right | ||
| # full version from it. | ||
| scalaVersion: ["2.13.x", "3.3.x"] | ||
| javaVersion: [17, 21] | ||
| javaVersion: [17, 21, 25] | ||
| env: | ||
| DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} | ||
| steps: | ||
|
|
@@ -160,8 +160,7 @@ jobs: | |
| clean "++ ${{ matrix.scalaVersion }} test" checkTestsHaveRun | ||
|
|
||
| - name: Docs | ||
| # Docs generation requires JDK 11. | ||
| if: ${{ matrix.javaVersion == 11 }} | ||
| if: ${{ matrix.javaVersion == 17 }} | ||
| run: |- | ||
| sudo apt-get install graphviz | ||
| # genjavadoc does not support Scala 3.x | ||
|
|
@@ -170,8 +169,7 @@ jobs: | |
| "++ ${{ matrix.scalaVersion }} doc" | ||
|
|
||
| - name: Publish | ||
| # Publish (osgi bundle) not working with JDK 17, issue #31132 | ||
| if: ${{ matrix.javaVersion == 11 }} | ||
| if: ${{ matrix.javaVersion == 17 }} | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. so this was fixed? I guess we'll see :)
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. if this fails, we'll have to fix it or drop this testing altogether - it is effectively disabled prior to this change because Java 17 is the min version used in the build |
||
| run: |- | ||
| sudo apt-get install graphviz | ||
| sbt \ | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
huh ;)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
docs build ok with Java 17 now - after Paradox fixes