This is an automated email from the ASF dual-hosted git repository.
martijnvisser pushed a commit to branch v3.0
in repository
https://gitbox.apache.org/repos/asf/flink-connector-elasticsearch.git
The following commit(s) were added to refs/heads/v3.0 by this push:
new f94649a [hotfix] Set maximum supported Flink version to 1.17 for
`v3.0`
f94649a is described below
commit f94649a60af367109f38c651d4dc819e0a430523
Author: Martijn Visser <[email protected]>
AuthorDate: Tue Jan 16 10:42:10 2024 +0100
[hotfix] Set maximum supported Flink version to 1.17 for `v3.0`
---
.github/workflows/push_pr.yml | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/push_pr.yml b/.github/workflows/push_pr.yml
index 89ea3fb..4f22f02 100644
--- a/.github/workflows/push_pr.yml
+++ b/.github/workflows/push_pr.yml
@@ -16,13 +16,18 @@
# limitations under the License.
################################################################################
-name: Build flink-connector-elasticsearch
+name: CI
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
compile_and_test:
+ strategy:
+ matrix:
+ flink: [ 1.16-SNAPSHOT, 1.17-SNAPSHOT ]
+ jdk: [ '8, 11' ]
uses: apache/flink-connector-shared-utils/.github/workflows/ci.yml@ci_utils
with:
- flink_version: 1.16.2
+ flink_version: ${{ matrix.flink }}
+ jdk_version: ${{ matrix.jdk }}