Skip to content

Update supported platforms #395

Update supported platforms

Update supported platforms #395

Workflow file for this run

name: CI
"on":
pull_request:
push:
branches: [main]
jobs:
lint-unit:
uses: sous-chefs/.github/.github/workflows/[email protected]
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-stream-9
- debian-11
- debian-12
- rockylinux-8
- rockylinux-9
- ubuntu-2004
- ubuntu-2204
- ubuntu-2404
suite:
- "repository"
- "repository-10"
- "client-install"
- "client-install-10"
- "client-distro-install"
- "server-install"
- "server-install-10"
- "server-distro-install"
- "configuration"
- "server-configuration"
- "server-configuration-10"
- "resources"
- "resources-10"
- "replication"
- "replication-10"
- "datadir"
- "datadir-10"
- "port"
- "port-10"
- "galera-configuration"
- "galera-configuration-10"
exclude:
- os: amazonlinux-2023
suite: repository-10
- os: amazonlinux-2023
suite: client-install-10
- os: amazonlinux-2023
suite: server-install-10
- os: amazonlinux-2023
suite: server-configuration-10
- os: amazonlinux-2023
suite: resources-10
- os: amazonlinux-2023
suite: replication-10
- os: amazonlinux-2023
suite: datadir-10
- os: amazonlinux-2023
suite: port-10
- os: amazonlinux-2023
suite: galera-configuration-10
fail-fast: false
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install Chef
uses: actionshub/[email protected]
- name: Disable apparmor for mysqld
run: |
set -x
sudo apt-get update
sudo apt-get -y remove mysql-server --purge
sudo apt-get -y install apparmor-profiles
sudo apparmor_parser -R /etc/apparmor.d/usr.sbin.mysqld
- name: Dokken
uses: actionshub/[email protected]
env:
CHEF_LICENSE: accept-no-persist
KITCHEN_LOCAL_YAML: kitchen.dokken.yml
with:
suite: ${{ matrix.suite }}
os: ${{ matrix.os }}