This is an automated email from the ASF dual-hosted git repository.

fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/main by this push:
     new cbd11d7aa5 Run Flink tests on Java 17 (#10477)
cbd11d7aa5 is described below

commit cbd11d7aa54a3b531f59a5e83411a163f9126a0c
Author: Piotr Findeisen <[email protected]>
AuthorDate: Wed Jun 19 11:05:29 2024 +0200

    Run Flink tests on Java 17 (#10477)
    
    Project supports building with 8, 11 and 17. In most CI scripts we run
    the jobs on all supported Java versions, let's do same here to ensure
    the build would work locally too.
---
 .github/workflows/flink-ci.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/flink-ci.yml b/.github/workflows/flink-ci.yml
index 0791f5b733..e360e0f293 100644
--- a/.github/workflows/flink-ci.yml
+++ b/.github/workflows/flink-ci.yml
@@ -71,8 +71,12 @@ jobs:
     runs-on: ubuntu-22.04
     strategy:
       matrix:
-        jvm: [8, 11]
+        jvm: [8, 11, 17]
         flink: ['1.17', '1.18', '1.19']
+        exclude:
+          # Flink 1.17 does not support Java 17.
+          - jvm: 17
+            flink: '1.17'
     env:
       SPARK_LOCAL_IP: localhost
     steps:

Reply via email to