-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (39 loc) · 1.06 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
- 'release-*'
concurrency:
group: ci-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
spark-connector-oceanbase:
uses: ./.github/workflows/test.yml
with:
module: spark-connector-oceanbase/spark-connector-oceanbase-base
spark-connector-obkv-hbase:
uses: ./.github/workflows/test.yml
with:
module: spark-connector-obkv-hbase/spark-connector-obkv-hbase-base
e2e-tests:
strategy:
matrix:
spark_version: ["3.1","3.2","3.3","3.4"]
uses: ./.github/workflows/test.yml
with:
module: spark-connector-oceanbase-e2e-tests
maven_opts: "-D spark_version=${{ matrix.spark_version }}"
e2e-tests-scala-2_11:
strategy:
matrix:
spark_version: ["2.4.6"]
uses: ./.github/workflows/test_scala2_11.yml
with:
module: spark-connector-oceanbase-e2e-tests
maven_opts: "-D spark_version=${{ matrix.spark_version }}"