* Update tested platforms - Remove CentOS 8, Debian 9 & Ubuntu 16.04 - Add CentOS Stream 8, Alma Linux 8, Rocky Linux 8, Debian 11 - Remove SmartOS from ChefSpec as the platform will deprecated soon Signed-off-by: Lance Albertson <lance@osuosl.org> * Switch to using lint-unit job instead of chef-delivery Signed-off-by: Lance Albertson <lance@osuosl.org> * Remove delivery and move to calling RSpec directly via a reusable workflow Signed-off-by: Lance Albertson <lance@osuosl.org>
61 lines
1.4 KiB
YAML
61 lines
1.4 KiB
YAML
---
|
|
name: ci
|
|
|
|
"on":
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
lint-unit:
|
|
uses: sous-chefs/.github/.github/workflows/lint-unit.yml@0.0.3
|
|
|
|
integration:
|
|
needs: 'lint-unit'
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- 'almalinux-8'
|
|
- 'amazonlinux-2'
|
|
- 'centos-7'
|
|
- 'centos-stream-8'
|
|
- 'debian-10'
|
|
- 'debian-11'
|
|
- 'fedora-latest'
|
|
- 'opensuse-leap-15'
|
|
- 'rockylinux-8'
|
|
- 'ubuntu-1804'
|
|
- 'ubuntu-2004'
|
|
suite:
|
|
- 'default'
|
|
- 'aliases'
|
|
- 'client'
|
|
- 'server'
|
|
- 'canonical'
|
|
- 'sasl-auth-none'
|
|
- 'sasl-auth-multiple'
|
|
- 'sasl-auth-one'
|
|
fail-fast: false
|
|
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
- name: Install Chef
|
|
uses: actionshub/chef-install@main
|
|
- name: Dokken
|
|
uses: actionshub/test-kitchen@main
|
|
env:
|
|
CHEF_LICENSE: accept-no-persist
|
|
KITCHEN_LOCAL_YAML: kitchen.dokken.yml
|
|
with:
|
|
suite: ${{ matrix.suite }}
|
|
os: ${{ matrix.os }}
|
|
- name: Print debug output on failure
|
|
if: failure()
|
|
run: |
|
|
set -x
|
|
sudo journalctl -l --since today
|
|
KITCHEN_LOCAL_YAML=kitchen.dokken.yml /usr/bin/kitchen exec ${{ matrix.suite }}-${{ matrix.os }} -c "journalctl -l"
|