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

dannycranmer pushed a commit to branch v1.0
in repository https://gitbox.apache.org/repos/asf/flink-connector-mongodb.git

commit 99755b44f9964cecd066641d2147aa134ed41b00
Author: Martijn Visser <mvis...@confluent.io>
AuthorDate: Thu Jun 15 10:54:10 2023 +0200

    [FLINK-31923] Run nightly builds against multiple branches and Flink 
versions
---
 .github/workflows/weekly.yml | 24 ++++++++++++++++++++++--
 1 file changed, 22 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml
index 577ff1f..bba17f1 100644
--- a/.github/workflows/weekly.yml
+++ b/.github/workflows/weekly.yml
@@ -26,7 +26,27 @@ jobs:
     if: github.repository_owner == 'apache'
     strategy:
       matrix:
-        flink: [1.16-SNAPSHOT, 1.17-SNAPSHOT]
+        flink_branches: [{
+          flink: 1.16-SNAPSHOT,
+          branch: main
+        }, {
+          flink: 1.17-SNAPSHOT,
+          branch: main
+        }, {
+          flink: 1.18-SNAPSHOT,
+          branch: main
+        }, {
+          flink: 1.16.2,
+          branch: v1.0
+        }, {
+          flink: 1.17.1,
+          branch: v1.0
+        }, {
+          flink: 1.18-SNAPSHOT,
+          branch: v1.0
+        }]
     uses: apache/flink-connector-shared-utils/.github/workflows/ci.yml@ci_utils
     with:
-      flink_version: ${{ matrix.flink }}
+      flink_version: ${{ matrix.flink_branches.flink }}
+      connector_branch: ${{ matrix.flink_branches.branch }}
+      run_dependency_convergence: false

Reply via email to