-
Notifications
You must be signed in to change notification settings - Fork 22
73 lines (71 loc) · 1.73 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
67
68
69
70
71
72
73
---
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-22.04
strategy:
fail-fast: false
matrix:
distro:
- ubuntu-22.04
- ubuntu-24.04
- debian-12
- fedora-39
# - almalinux-8
- almalinux-9
# - rockylinux-8
- rockylinux-9
mariadb-version:
- "10.5"
- "10.6"
- "10.11"
- "11.4"
exclude:
- distro: debian-12
mariadb-version: 10.5
- distro: debian-12
mariadb-version: 10.6
- distro: ubuntu-22.04
mariadb-version: 10.5
- distro: ubuntu-24.04
mariadb-version: 10.5
- distro: ubuntu-24.04
mariadb-version: 10.6
steps:
- uses: actions/checkout@v4
- name: Setup environment
uses: ./.github/workflows/composite-action
- name: Run molecule
run: |
source .venv/bin/activate
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 }}