-
Notifications
You must be signed in to change notification settings - Fork 67
215 lines (212 loc) · 5.33 KB
/
test-kitchen.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
name: Test Kitchen
on:
- push
- pull_request
- workflow_dispatch
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
kitchen:
name: Test Kitchen
runs-on: ubuntu-22.04
permissions:
packages: read
strategy:
matrix:
suite:
- accounts
- apache
- apt
- apt-repository
- backup
- bind
- blog
- blogs
- chef
- civicrm
- clamav
- community
- db-backup
- db-base
- db-master
- db-slave
- dev
- devices
- dhcpd
- dmca
- dns
- docker
- elasticsearch
- exim
- fail2ban
- foundation-birthday
- foundation-board
- foundation-dwg
- foundation-mastodon
- foundation-mwg
- foundation-owg
- foundation-welcome
- foundation-wiki
- ftp
- geodns
- geoipupdate
- git
- git-server
- git-web
- gps-tile
- hardware
- hot
- ideditor
- irc
- kibana
- letsencrypt
- logstash
- logstash-forwarder
- mail
- mailman
- matomo
- memcached
- mysql
- networking
- nginx
- nodejs
- nominatim
- ntp
- openssh
- osmosis
- osqa
- otrs
- overpass
- passenger
- php
- php-apache
- php-fpm
- planet
- planet-aws
- planet-current
- planet-dump
- planet-notes
- planet-replication
- postgresql
- prometheus
- prometheus-server
- python
- rsyncd
- serverinfo
- snmpd
- spamassassin
- ssl
- stateofthemap-container
- stateofthemap-wordpress
- subversion
- supybot
- switch2osm
- sysctl
- sysfs
- taginfo
- tile
- tilelog
- tools
- trac
- vectortile
- web-cgimap
- web-frontend
- web-rails
- wordpress
- wiki
os:
- ubuntu-2204
include:
- os: ubuntu-2004
suite: mailman
- os: ubuntu-2004
suite: osqa
- os: debian-12
suite: apt-repository
- os: debian-12
suite: dev
- os: debian-12
suite: dns
- os: debian-12
suite: git-server
- os: debian-12
suite: git-web
- os: debian-12
suite: imagery-tiler
- os: debian-12
suite: letsencrypt
- os: debian-12
suite: otrs
- os: debian-12
suite: serverinfo
- os: debian-12
suite: supybot
- os: debian-12
suite: vectortile
- os: debian-12
suite: web-cgimap
- os: debian-12
suite: web-frontend
- os: debian-12
suite: web-rails
exclude:
- suite: apt-repository
os: ubuntu-2204
- suite: dev
os: ubuntu-2204
- suite: dns
os: ubuntu-2204
- suite: git-server
os: ubuntu-2204
- suite: git-web
os: ubuntu-2204
- suite: mailman
os: ubuntu-2204
- suite: letsencrypt
os: ubuntu-2204
- suite: osqa
os: ubuntu-2204
- suite: otrs
os: ubuntu-2204
- suite: serverinfo
os: ubuntu-2204
- suite: supybot
os: ubuntu-2204
- suite: vectortile
os: ubuntu-2204
- suite: web-cgimap
os: ubuntu-2204
- suite: web-frontend
os: ubuntu-2204
- suite: web-rails
os: ubuntu-2204
fail-fast: false
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
if: github.repository == 'openstreetmap/chef' && github.event_name != 'pull_request'
- name: Check out code
uses: actions/checkout@v4
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
bundler-cache: true
- name: Run kitchen test ${{ matrix.suite }}-${{ matrix.os }}
run: bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }}
- name: Gather journal output
run: |
bundle exec kitchen exec ${{ matrix.suite }}-${{ matrix.os }} -c "journalctl --since=yesterday"
bundle exec kitchen exec ${{ matrix.suite }}-${{ matrix.os }} -c "networkctl status --all"
bundle exec kitchen exec ${{ matrix.suite }}-${{ matrix.os }} -c "resolvectl status" || true
if: ${{ failure() }}