tomncooper commented on code in PR #910:
URL:
https://github.com/apache/flink-kubernetes-operator/pull/910#discussion_r1830801655
##########
.github/workflows/ci.yml:
##########
@@ -83,15 +83,33 @@ jobs:
flink-version: "v1_20"
http-client: ${{ matrix.http-client }}
test: test_application_operations.sh
+ java_rutimes:
+ name: Java runtimes smoke test
+ needs: e2e_smoke_test
+ strategy:
+ matrix:
+ http-client: [ "okhttp" ]
+ java-version: [ "11", "17"]
+ flink-version:
+ - "v1_20"
+ - "v1_19"
+ - "v1_18"
+ uses: ./.github/workflows/e2e.yaml
+ with:
+ java-version: ${{ matrix.java-version }}
Review Comment:
Yeah I agree with @SamBarker. The issue here is actually not the interplay
of JDK versions but rather the config supplied by the operator's logic not
being compatible (or more accuratly _enabling_) Java 17 support. So that's what
we need to test.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]