-
Notifications
You must be signed in to change notification settings - Fork 23
60 lines (58 loc) · 1.29 KB
/
test_cluster.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
---
name: Cluster
on:
push:
paths:
- .github/workflows/test_cluster.yml
- requirements.txt
- "files/**"
- "handlers/**"
- "molecule/cluster/**"
- "tasks/**"
- "templates/**"
- "vars/**"
pull_request:
paths:
- .github/workflows/test_cluster.yml
- requirements.txt
- "files/**"
- "handlers/**"
- "molecule/cluster/**"
- "tasks/**"
- "templates/**"
- "vars/**"
schedule:
- cron: "30 5 * * 2"
jobs:
molecule-distrib-pkg:
name: Cluster
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
distro:
# - ubuntu-18.04
- ubuntu-20.04
- ubuntu-22.04
- debian-11
- debian-12
- fedora-39
- fedora-40
# - almalinux-8
- almalinux-9
# - rockylinux-8
- rockylinux-9
- alpine-3.19
- alpine-3.20
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 }}