-
Notifications
You must be signed in to change notification settings - Fork 7
45 lines (38 loc) · 1.05 KB
/
push_pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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-tools-cdc:
uses: ./.github/workflows/test.yml
with:
module: flink-connector-oceanbase-tools-cdc
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 }}"