robobario commented on code in PR #910: URL: https://github.com/apache/flink-kubernetes-operator/pull/910#discussion_r1830364730
########## .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 you're right we aren't likely to see some incompatibility arising from different JRE combinations. Maybe it would be better to hold the operator JDK constant and vary only the flink runtime. Just to make it clearer which thing is varied. -- 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: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org