-
-
Notifications
You must be signed in to change notification settings - Fork 805
116 lines (112 loc) · 2.96 KB
/
ci.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
---
name: ci
"on":
pull_request:
push:
branches:
- main
jobs:
lint-unit:
uses: sous-chefs/.github/.github/workflows/lint-unit.yml@3.0.0
permissions:
actions: write
checks: write
pull-requests: write
statuses: write
issues: write
integration:
needs: lint-unit
runs-on: ubuntu-latest
strategy:
matrix:
os:
- "almalinux-8"
- "almalinux-9"
- "amazonlinux-2023"
- "centos-7"
- "centos-stream-8"
- "centos-stream-9"
- "debian-10"
- "debian-11"
- "opensuse-leap-15"
- "rockylinux-8"
- "rockylinux-9"
- "ubuntu-1804"
- "ubuntu-2004"
suite:
- "distro"
- "repo"
- "repo-overrides"
- "epel"
- "nginx-full"
exclude:
- os: "opensuse-leap-15"
suite: "repo"
- os: "centos-7"
suite: "distro"
- os: "amazonlinux-2023"
suite: "epel"
- os: "debian-9"
suite: "epel"
- os: "debian-10"
suite: "epel"
- os: "debian-11"
suite: "epel"
- os: "ubuntu-1804"
suite: "epel"
- os: "ubuntu-2004"
suite: "epel"
- os: "fedora-latest"
suite: "epel"
- os: "opensuse-leap-15"
suite: "epel"
- os: "amazonlinux-2023"
suite: "nginx-full"
- os: "centos-7"
suite: "nginx-full"
- os: "centos-stream-8"
suite: "nginx-full"
- os: "centos-stream-9"
suite: "nginx-full"
- os: "almalinux-8"
suite: "nginx-full"
- os: "almalinux-9"
suite: "nginx-full"
- os: "rockylinux-8"
suite: "nginx-full"
- os: "rockylinux-9"
suite: "nginx-full"
- os: "amazonlinux"
suite: "nginx-full"
- os: "debian-10"
suite: "nginx-full"
- os: "debian-11"
suite: "nginx-full"
- os: "fedora-latest"
suite: "nginx-full"
- os: "opensuse-leap-15"
suite: "nginx-full"
- os: "amazonlinux-2023"
suite: "repo-overrides"
- os: "centos-7"
suite: "repo-overrides"
- os: "debian-10"
suite: "repo-overrides"
- os: "opensuse-leap-15"
suite: "repo-overrides"
- os: "ubuntu-1804"
suite: "repo-overrides"
fail-fast: false
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install Chef
uses: actionshub/chef-install@3.0.0
- name: Dokken
uses: actionshub/test-kitchen@3.0.0
env:
CHEF_LICENSE: accept-no-persist
KITCHEN_LOCAL_YAML: kitchen.dokken.yml
with:
suite: ${{ matrix.suite }}
os: ${{ matrix.os }}