-
Notifications
You must be signed in to change notification settings - Fork 22
91 lines (88 loc) · 2.15 KB
/
test_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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
---
name: MDBF deployment
on:
push:
paths:
- .github/workflows/test_mdbf.yml
- requirements.txt
- "files/**"
- "handlers/**"
- "molecule/default/**"
- "tasks/**"
- "templates/**"
- "vars/**"
pull_request:
paths:
- .github/workflows/test_mdbf.yml
- requirements.txt
- "files/**"
- "handlers/**"
- "molecule/default/**"
- "tasks/**"
- "templates/**"
- "vars/**"
schedule:
- cron: "10 5 * * 2"
jobs:
molecule-mdbf-pkg:
name: MDBF
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
distro:
# //TEMP pb with 20.04
# - ubuntu-20.04
- ubuntu-22.04
- ubuntu-24.04
- debian-11
- debian-12
- debian-sid
- fedora-39
- fedora-40
- fedora-41
# - almalinux-8
- almalinux-9
# - rockylinux-8
- rockylinux-9
mariadb-version:
- "10.5"
- "10.6"
- "10.11"
- "11.2"
- "11.4"
- "11.rc"
- "11.rolling"
exclude:
- distro: ubuntu-22.04
mariadb-version: 10.5
- distro: ubuntu-24.04
mariadb-version: 10.5
- distro: ubuntu-24.04
mariadb-version: 10.6
- distro: debian-12
mariadb-version: 10.5
- distro: debian-12
mariadb-version: 10.6
- distro: debian-sid
mariadb-version: 10.5
- distro: fedora-40
mariadb-version: 10.5
- distro: fedora-40
mariadb-version: 10.6
- distro: fedora-40
mariadb-version: 11.2
steps:
- uses: actions/checkout@v4
- name: Setup environment
uses: ./.github/workflows/composite-action
- name: Run molecule
run: |
source .venv/bin/activate
molecule test
env:
PY_COLORS: "1"
ANSIBLE_FORCE_COLOR: "1"
MOLECULE_DISTRO: ${{ matrix.distro }}
MOLECULE_PLAYBOOK: mdbf.yml
MARIADB_VERSION: ${{ matrix.mariadb-version }}