chore: update cli module shaded config and add e2e test #186
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
paths-ignore: | |
- "docs/**" | |
- "**.md" | |
- ".*" | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ci-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
flink-connector-oceanbase: | |
uses: ./.github/workflows/test.yml | |
with: | |
module: flink-connector-oceanbase | |
flink-connector-obkv-hbase: | |
uses: ./.github/workflows/test.yml | |
with: | |
module: flink-connector-obkv-hbase | |
flink-connector-oceanbase-directload: | |
uses: ./.github/workflows/test.yml | |
with: | |
module: flink-connector-oceanbase-directload | |
flink-connector-oceanbase-cli: | |
uses: ./.github/workflows/test.yml | |
with: | |
module: flink-connector-oceanbase-cli | |
flink-connector-oceanbase-e2e-tests: | |
strategy: | |
matrix: | |
flink_version: ["1.15.4", "1.16.3", "1.17.2", "1.18.1", "1.19.1", "1.20.0"] | |
uses: ./.github/workflows/test.yml | |
with: | |
module: flink-connector-oceanbase-e2e-tests | |
maven_opts: "-Dflink_version=${{ matrix.flink_version }}" |