-
-
Notifications
You must be signed in to change notification settings - Fork 523
55 lines (54 loc) · 1.54 KB
/
clt_tests.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
51
52
53
54
55
name: CLT tests
on:
workflow_call:
inputs:
docker_image:
required: true
type: string
description: "Docker image to use for tests"
artifact_name:
required: false
type: string
description: "Name of the docker image artifact"
repository:
required: false
type: string
description: "Repository to checkout"
ref:
required: false
type: string
description: "Ref to checkout"
jobs:
clt:
name: CLT
runs-on: ubuntu-22.04
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
test-suite:
- name: Core
test_prefix: |-
test/clt-tests/core/
test/clt-tests/expected-errors/
- name: mysqldump
test_prefix: |-
test/clt-tests/mysqldump/mysql/
test/clt-tests/mysqldump/maria/
- name: Replication
test_prefix: test/clt-tests/replication/
- name: Plugins
test_prefix: test/clt-tests/plugins/
- name: Buddy
test_prefix: test/clt-tests/buddy/
- name: Update
test_prefix: test/clt-tests/optimisation-and-update/
steps:
- uses: manticoresoftware/[email protected]
with:
artifact: ${{ inputs.artifact_name }}
image: ${{ inputs.docker_image }}
repository: ${{ inputs.repository }}
ref: ${{ inputs.ref }}
test_prefix: ${{ matrix.test-suite.test_prefix }}
comment_mode: failures