Skip to content

Commit

Permalink
Can't test grpc examples with Java 21+ currently
Browse files Browse the repository at this point in the history
Because of lightbend/ssl-config#367
Exception:
java.lang.IllegalArgumentException: GrpcClientSettings requires a server endpoint with ssl, but none provided
  • Loading branch information
mkurz committed Apr 29, 2024
1 parent 8d35a2e commit 306b016
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,8 @@ jobs:
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'java-grpc')}}
with:
java: 17, 21
# Can't test with Java 21+ currently because of https://github.com/lightbend/ssl-config/issues/367
java: 17
scala: 2.13.x, 3.x
gradle-build-root: play-java-grpc-example
add-dimensions: >-
Expand Down Expand Up @@ -362,7 +363,8 @@ jobs:
needs: changes
if: ${{ (github.event_name != 'pull_request' && !failure() && !cancelled()) || contains(fromJSON(needs.changes.outputs.samples), 'scala-grpc')}}
with:
java: 17, 21
# Can't test with Java 21+ currently because of https://github.com/lightbend/ssl-config/issues/367
java: 17
scala: 2.13.x, 3.x
gradle-build-root: play-scala-grpc-example
add-dimensions: >-
Expand Down

0 comments on commit 306b016

Please sign in to comment.