You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
secp-jdk is still built with JDK 23 by default. JVM requirements of JARs
is also unchanged. This commit just updates the GitHub Actions gradle
build to use JDK 24. The GitHub Actions Nix build continues to use
JDK 23.
GHA gradle.yml:
* Install both JDK 23 (to launch Gradle) and 24 (to compile Java)
* Override default and build with `-PjavaToolchainVersion=24`
gradle.properties:
* Add a `JDK24` environment variable as a place to search for JDKs
Builds will by default be with JDK23 (because of an unchanged property
in gradle.properties), but it can be overridden with:
`./gradlew -PjavaToolchainVersion=24 build`
0 commit comments