zentol opened a new pull request #17866: URL: https://github.com/apache/flink/pull/17866
This allows us to run the compile/tests phases with Java 17. E2E tests are a separate issue. Here's the corresponding Dockerfile: ``` FROM chesnay/flink-ci:base RUN wget -q https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.1%2B12/OpenJDK17U-jdk_x64_linux_hotspot_17.0.1_12.tar.gz RUN tar -C /usr/lib/jvm -xzf OpenJDK17U-jdk_x64_linux_hotspot_17.0.1_12.tar.gz RUN echo "JAVA_HOME_17_X64=/usr/lib/jvm/jdk-17.0.1+12" >> /etc/environment ENV JAVA_HOME_17_X64 "/usr/lib/jvm/jdk-17.0.1+12" ``` -- 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]
