This is an automated email from the ASF dual-hosted git repository.
echauchot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-connector-cassandra.git
The following commit(s) were added to refs/heads/main by this push:
new f8ac343 [FLINK-31698] Support both Flink 1.16 and Flink 1.17 to
resolve failing nightly builds
f8ac343 is described below
commit f8ac3431f3f5b3f3a8d0e39885a446dc341ea764
Author: MartijnVisser <[email protected]>
AuthorDate: Thu Apr 13 12:08:11 2023 +0200
[FLINK-31698] Support both Flink 1.16 and Flink 1.17 to resolve failing
nightly builds
---
.github/workflows/push_pr.yml | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/push_pr.yml b/.github/workflows/push_pr.yml
index 335f108..0542242 100644
--- a/.github/workflows/push_pr.yml
+++ b/.github/workflows/push_pr.yml
@@ -16,13 +16,16 @@
# limitations under the License.
################################################################################
-name: CI
+name: Build flink-connector-cassandra
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
compile_and_test:
+ strategy:
+ matrix:
+ flink: [1.16.1, 1.17.0]
uses: apache/flink-connector-shared-utils/.github/workflows/ci.yml@ci_utils
with:
- flink_version: 1.17.0
+ flink_version: ${{ matrix.flink }}