-
Notifications
You must be signed in to change notification settings - Fork 16
50 lines (47 loc) · 1.54 KB
/
standard-test-suite.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
46
47
48
49
50
name: Standard Test Suite
on:
pull_request: # when a PR is opened or reopened
types: [opened, reopened]
branches:
- main
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
unit-test:
uses: ./.github/workflows/unit-test.yml
unit-mds:
uses: ./.github/workflows/unit-mds.yml
case-regression:
uses: ./.github/workflows/case-regression.yml
with:
metadata-matrix: '["zookeeper"]'
standalone-test:
uses: ./.github/workflows/standalone-test.yml
with:
metadata-matrix: '["zookeeper"]'
standalone-test-pushdown:
uses: ./.github/workflows/standalone-test-pushdown.yml
with:
metadata-matrix: '["zookeeper"]'
db-ce:
uses: ./.github/workflows/DB-CE.yml
with:
metadata-matrix: '["zookeeper"]'
remote-test:
uses: ./.github/workflows/remote-test.yml
with:
metadata-matrix: '["zookeeper"]'
assembly-test:
uses: ./.github/workflows/assembly-test.yml
tpc-h-regression-test:
uses: ./.github/workflows/tpc-h.yml
with:
os-matrix: '["ubuntu-latest"]'
metadata-matrix: '["zookeeper"]'
tpc-h-regression-test-pushdown:
uses: ./.github/workflows/tpc-h-pushdown.yml
with:
os-matrix: '["ubuntu-latest"]'
metadata-matrix: '["zookeeper"]'
db-matrix: '["InfluxDB", "FileSystem", "PostgreSQL", "Redis", "MongoDB", "MySQL"]'