-
Notifications
You must be signed in to change notification settings - Fork 21
66 lines (64 loc) · 1.48 KB
/
test_cluster_mdbf.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
56
57
58
59
60
61
62
63
64
65
66
---
name: Cluster MDBF
on:
push:
paths:
- .github/workflows/test_cluster_mdbf.yml
- requirements.txt
- "files/**"
- "handlers/**"
- "molecule/cluster/**"
- "tasks/**"
- "templates/**"
- "vars/**"
pull_request:
paths:
- .github/workflows/test_cluster_mdbf.yml
- requirements.txt
- "files/**"
- "handlers/**"
- "molecule/cluster/**"
- "tasks/**"
- "templates/**"
- "vars/**"
schedule:
- cron: "30 5 * * 2"
jobs:
molecule-cluster-pkg:
name: Cluster MDBF
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
distro:
- ubuntu-20.04
- ubuntu-22.04
- debian-12
- fedora-38
- almalinux-8
- almalinux-9
- rockylinux-8
- rockylinux-9
mariadb-version:
- "10.6"
- "10.11"
- "11.0"
- "11.1"
- "11.2"
- "11.rc"
- "11.rolling"
exclude:
- distro: debian-12
mariadb-version: 10.6
steps:
- uses: actions/checkout@v4
- name: Setup environment
uses: ./.github/workflows/composite-action
- name: Run molecule
run: molecule test -s cluster
env:
PY_COLORS: "1"
ANSIBLE_FORCE_COLOR: "1"
MOLECULE_DISTRO: ${{ matrix.distro }}
MOLECULE_PLAYBOOK: mdbf.yml
MARIADB_VERSION: ${{ matrix.mariadb-version }}