]> git.openstreetmap.org Git - chef.git/blob - .github/workflows/test-kitchen.yml
Merge remote-tracking branch 'github/pull/575'
[chef.git] / .github / workflows / test-kitchen.yml
1 name: Test Kitchen
2
3 on:
4   - push
5   - pull_request
6
7 concurrency:
8   group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
9   cancel-in-progress: true
10
11 jobs:
12   kitchen:
13     name: Test Kitchen
14     runs-on: ubuntu-22.04
15     strategy:
16       matrix:
17         suite:
18           - accounts
19           - apache
20           - apt
21           - backup
22           - bind
23           - blog
24           - blogs
25           - civicrm
26           - clamav
27           - community
28           - db-backup
29           - db-base
30           - db-master
31           - db-slave
32           - devices
33           - dhcpd
34           - dmca
35           - dns
36           - docker
37           - donate
38           - elasticsearch
39           - exim
40           - fail2ban
41           - forum
42           - foundation-board
43           - foundation-dwg
44           - foundation-mwg
45           - foundation-owg
46           - foundation-welcome
47           - foundation-wiki
48           - ftp
49           - geodns
50           - geoipupdate
51           - git
52           - git-server
53           - git-web
54           - gps-tile
55           - hardware
56           - hot
57           - incron
58           - irc
59           - kibana
60           - letsencrypt
61           - logstash
62           - logstash-forwarder
63           - mail
64           - mailman
65           - matomo
66           - memcached
67           - munin
68           - munin-plugins
69           - munin-server
70           - mysql
71           - networking
72           - nginx
73           - nodejs
74           - nominatim
75           - ntp
76           - openssh
77           - osmosis
78           - osqa
79           - otrs
80           - overpass
81           - passenger
82           - php
83           - php-apache
84           - php-fpm
85           - planet
86           - planet-current
87           - planet-dump
88           - planet-notes
89           - planet-replication
90           - postgresql
91           - prometheus
92           - prometheus-server
93           - python
94           - rsyncd
95           - serverinfo
96           - snmpd
97           - spamassassin
98           - ssl
99           - stateofthemap
100           - stateofthemap-container
101           - stateofthemap-wordpress
102           - subversion
103           - supybot
104           - switch2osm
105           - sysctl
106           - sysfs
107           - taginfo
108           - tile
109           - tilelog
110           - tools
111           - trac
112           - web-cgimap
113           - web-frontend
114           - web-rails
115           - wordpress
116           - wiki
117         os:
118           - ubuntu-2204
119         include:
120           - os: ubuntu-2004
121             suite: mailman
122           - os: ubuntu-2004
123             suite: osqa
124         exclude:
125           - suite: mailman
126             os: ubuntu-2204
127           - suite: osqa
128             os: ubuntu-2204
129       fail-fast: false
130     steps:
131     - name: Check out code
132       uses: actions/checkout@v3
133     - name: Setup ruby
134       uses: ruby/setup-ruby@v1
135       with:
136         ruby-version: 3.1
137         bundler-cache: true
138     - name: Run kitchen test ${{ matrix.suite }}-${{ matrix.os }}
139       run: bundle exec kitchen test ${{ matrix.suite }}-${{ matrix.os }}
140     - name: Gather journal output
141       run: bundle exec kitchen exec ${{ matrix.suite }}-${{ matrix.os }} -c journalctl --since=yesterday
142       if: ${{ failure() }}