Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FLINK-35141][Connectors/Pulsar] Drop support for Flink 1.17 #92

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,11 @@ jobs:
compile_and_test:
strategy:
matrix:
flink: [ 1.17.1, 1.18.0 ]
jdk: [ 8, 11, 17 ]
exclude:
- jdk: 17
flink: 1.17.1
flink: [ 1.18.1, 1.19.0 ]
uses: apache/flink-connector-shared-utils/.github/workflows/ci.yml@ci_utils
with:
flink_version: ${{ matrix.flink }}
jdk_version: ${{ matrix.jdk }}
jdk_version: ${{ matrix.jdk || '8, 11, 17' }}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we add 21 for 1.19?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have not tested support, would rather decouple this

timeout_global: 120
timeout_test: 80
check_dead_links:
Expand Down
24 changes: 10 additions & 14 deletions .github/workflows/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,29 +31,25 @@ jobs:
strategy:
fail-fast: false
matrix:
jdk: [ 8, 11 ]
flink_branches: [{
flink: 1.17-SNAPSHOT,
flink: 1.18-SNAPSHOT,
branch: main
}, {
flink: 1.18-SNAPSHOT,
flink: 1.19-SNAPSHOT,
branch: main
}, {
flink: 1.20-SNAPSHOT,
branch: main
}, {
flink: 1.16.2,
branch: v3.0
flink: 1.18.1,
branch: v4.1
}, {
flink: 1.17.1,
branch: v4.0
flink: 1.19.0,
branch: v4.1
}]
include:
- jdk: 17
flink_branches: {
flink: 1.18-SNAPSHOT,
branch: main
}
uses: apache/flink-connector-shared-utils/.github/workflows/ci.yml@ci_utils
with:
jdk_version: ${{ matrix.jdk }}
jdk_version: ${{ matrix.jdk || '8, 11, 17' }}
flink_version: ${{ matrix.flink_branches.flink }}
connector_branch: ${{ matrix.flink_branches.branch }}
run_dependency_convergence: false
Expand Down
Loading