-
Notifications
You must be signed in to change notification settings - Fork 67
149 lines (146 loc) · 3.32 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
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
- backup
- bind
- blog
- blogs
- civicrm
- clamav
- community
- db-backup
- db-base
- db-master
- db-slave
- devices
- dhcpd
- dmca
- dns
- docker
- elasticsearch
- exim
- fail2ban
- foundation-board
- foundation-dwg
- 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
- munin
- munin-plugins
- munin-server
- 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
- web-cgimap
- web-frontend
- web-rails
- wordpress
- wiki
os:
- ubuntu-2204
include:
- os: ubuntu-2004
suite: mailman
- os: ubuntu-2004
suite: osqa
exclude:
- suite: mailman
os: ubuntu-2204
- suite: osqa
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: 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
if: ${{ failure() }}