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-34003] Bump CI Flink version on flink-connector-hbase #39

Closed
wants to merge 3 commits into from
Closed
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
11 changes: 8 additions & 3 deletions .github/workflows/push_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,14 @@ jobs:
compile_and_test:
strategy:
matrix:
flink: [1.16.2, 1.17.1, 1.18.0]
flink: [ 1.16-SNAPSHOT, 1.17-SNAPSHOT ]
jdk: [ '8, 11' ]
include:
- flink: 1.18-SNAPSHOT
jdk: '8, 11, 17'
- flink: 1.19-SNAPSHOT
jdk: '8, 11, 17, 21'
uses: apache/flink-connector-shared-utils/.github/workflows/ci.yml@ci_utils
with:
flink_version: ${{ matrix.flink }}
timeout_global: 120
timeout_test: 80
jdk_version: ${{ matrix.jdk }}
29 changes: 17 additions & 12 deletions .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,28 +27,33 @@ jobs:
strategy:
matrix:
flink_branches: [{
flink: 1.16.2,
branch: v3.0
}, {
flink: 1.17.1,
branch: v3.0
}, {
flink: 1.18.0,
branch: v3.0
}, {
flink: 1.16-SNAPSHOT,
branch: main
}, {
flink: 1.17-SNAPSHOT,
branch: main
}, {
flink: 1.18-SNAPSHOT,
jdk: '8, 11, 17',
branch: main
}, {
flink: 1.19-SNAPSHOT,
jdk: '8, 11, 17, 21',
branch: main
}, {
flink: 1.16.2,
branch: v3.0
}, {
flink: 1.17.1,
branch: v3.0
}, {
flink: 1.18.0,
jdk: '8, 11, 17',
branch: v3.0
}]
uses: apache/flink-connector-shared-utils/.github/workflows/ci.yml@ci_utils
with:
flink_version: ${{ matrix.flink_branches.flink }}
connector_branch: ${{ matrix.flink_branches.branch }}
run_dependency_convergence: false
timeout_global: 120
timeout_test: 80
jdk_version: ${{ matrix.flink_branches.jdk || '8, 11' }}
run_dependency_convergence: false
7 changes: 7 additions & 0 deletions flink-connector-hbase-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ under the License.
<name>Flink : Connectors : HBase Base</name>
<packaging>jar</packaging>

<properties>
<surefire.module.config> <!-- required by
Db2ExactlyOnceSinkE2eTest --> --add-opens=java.base/java.util=ALL-UNNAMED <!--
SimpleJdbcConnectionProviderDriverClassConcurrentLoadingITCase--> --add-opens=java.base/java.lang=ALL-UNNAMED
</surefire.module.config>
</properties>

<dependencies>
<!-- Core -->
<dependency>
Expand Down
9 changes: 9 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ under the License.

<!-- For directory plugin -->
<flink.parent.artifactId>flink-connector-hbase-parent</flink.parent.artifactId>
<!-- These 2 properties should be removed together with upgrade of flink-connector-parent to 1.1.x -->
<flink.surefire.baseArgLine>-XX:+UseG1GC -Xms256m -XX:+IgnoreUnrecognizedVMOptions ${surefire.module.config}</flink.surefire.baseArgLine>
<surefire.module.config/>
</properties>

<modules>
Expand Down Expand Up @@ -499,6 +502,12 @@ under the License.
<artifactId>assertj-core</artifactId>
<version>${assertj.version}</version>
</dependency>

<dependency>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<version>1.1.10.4</version>
</dependency>
<!-- End of dependencies for dependency convergence -->
</dependencies>
</dependencyManagement>
Expand Down
Loading