You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ec...@apache.org on 2024/03/01 13:28:10 UTC

(flink-connector-shared-utils) 09/09: [FLINK-34137] upgrade all flinks versions in CI: 1.16.x -> 1.17.x, 1.17.x -> 1.18.x

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

echauchot pushed a commit to branch ci_utils
in repository https://gitbox.apache.org/repos/asf/flink-connector-shared-utils.git

commit b5ad097df25973ad05d0d6af0f988b65b0d8cd22
Author: Etienne Chauchot <ec...@apache.org>
AuthorDate: Fri Mar 1 11:23:54 2024 +0100

    [FLINK-34137] upgrade all flinks versions in CI: 1.16.x -> 1.17.x, 1.17.x -> 1.18.x
---
 .github/workflows/_testing.yml | 18 +++++++++---------
 pom.xml                        |  2 +-
 2 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/.github/workflows/_testing.yml b/.github/workflows/_testing.yml
index f7b2534..d45b664 100644
--- a/.github/workflows/_testing.yml
+++ b/.github/workflows/_testing.yml
@@ -32,21 +32,21 @@ jobs:
   snapshot-without-archunit-tests:
     uses: ./.github/workflows/ci.yml
     with:
-      flink_version: 1.16-SNAPSHOT
+      flink_version: 1.17-SNAPSHOT
       skip_archunit_tests: true
   # we need to test the connectors against last 2 flink major versions.
-  # let's say the connector under test was built against flink 1.17.2, disable the archunit tests when tested against 1.16.2
+  # let's say the connector under test was built against flink 1.18.0, disable the archunit tests when tested against 1.17.2
   non-main-version-without-archunit-tests:
     uses: ./.github/workflows/ci.yml
     with:
-      flink_version: 1.16.2
+      flink_version: 1.17.2
       skip_archunit_tests: true
   # we need to test the connectors against last 2 flink major versions.
-  # let's say the connector under test was built against flink 1.17.2, leave the archunit tests enabled when tested against 1.17.2
+  # let's say the connector under test was built against flink 1.18.0, leave the archunit tests enabled when tested against 1.18.0
   main-version-with-archunit-tests:
     uses: ./.github/workflows/ci.yml
     with:
-      flink_version: 1.17.2
+      flink_version: 1.18.0
   flink118-java17-version:
     uses: ./.github/workflows/ci.yml
     with:
@@ -57,13 +57,13 @@ jobs:
   disable-convergence:
     uses: ./.github/workflows/ci.yml
     with:
-      flink_version: 1.16.1
+      flink_version: 1.17.2
       connector_branch: ci_utils
       run_dependency_convergence: false
   optional_maven_profile:
     uses: ./.github/workflows/ci.yml
     with:
-      flink_version: 1.16-SNAPSHOT
+      flink_version: 1.17-SNAPSHOT
       connector_branch: ci_utils
       jdk_version: 11
       optional_maven_profiles: "java11,java11-target"
@@ -71,14 +71,14 @@ jobs:
     strategy:
       matrix:
         flink_branches: [{
-          flink: 1.16.1
+          flink: 1.17.2
 #          By not specifying a branch, it should default to the branch that triggers this workflow
         }, {
           flink: 1.17.2,
 #          By specifying this branch, it should check out this specified branch
           branch: ci_utils
         }, {
-          flink: 1.16.1,
+          flink: 1.17.2,
 #          By specifying a different branch then on L49, it should check out this specified branch
           branch: test_project
         }]
diff --git a/pom.xml b/pom.xml
index 2fc1e1b..0a4d4c8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -38,7 +38,7 @@ under the License.
 	<packaging>pom</packaging>
 
 	<properties>
-		<flink.version>1.17.2</flink.version>
+		<flink.version>1.18.0</flink.version>
 		<japicmp.referenceVersion>1.16.0</japicmp.referenceVersion>
 		<archunit.version>1.0.0</archunit.version>
 		<slf4j.version>1.7.36</slf4j.version>