2021-02-13 14:20:18 +01:00
|
|
|
---
|
|
|
|
#
|
|
|
|
# Ansible managed
|
|
|
|
#
|
|
|
|
|
|
|
|
name: Ansible Molecule
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags_ignore:
|
|
|
|
- '*'
|
|
|
|
pull_request:
|
|
|
|
schedule:
|
2023-02-17 12:06:35 +01:00
|
|
|
- cron: '3 2 2 * *'
|
2021-02-13 14:20:18 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
|
|
- name: checkout
|
2023-02-17 12:06:35 +01:00
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: ansible-lint
|
|
|
|
uses: ansible-community/ansible-lint-action@main
|
2021-02-13 14:20:18 +01:00
|
|
|
test:
|
|
|
|
needs:
|
|
|
|
- lint
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
config:
|
2023-02-17 12:06:35 +01:00
|
|
|
- image: "alpine"
|
|
|
|
tag: "latest"
|
2021-02-13 14:20:18 +01:00
|
|
|
- image: "amazonlinux"
|
|
|
|
tag: "latest"
|
2023-02-17 12:06:35 +01:00
|
|
|
- image: "enterpriselinux"
|
2021-02-13 14:20:18 +01:00
|
|
|
tag: "7"
|
2023-02-17 12:06:35 +01:00
|
|
|
- image: "enterpriselinux"
|
|
|
|
tag: "8"
|
|
|
|
- image: "enterpriselinux"
|
2021-02-13 14:20:18 +01:00
|
|
|
tag: "latest"
|
|
|
|
- image: "debian"
|
|
|
|
tag: "latest"
|
|
|
|
- image: "debian"
|
2023-02-17 12:06:35 +01:00
|
|
|
tag: "bookworm"
|
2021-02-13 14:20:18 +01:00
|
|
|
- image: "fedora"
|
2023-02-17 12:06:35 +01:00
|
|
|
tag: "36"
|
2021-02-13 14:20:18 +01:00
|
|
|
- image: "fedora"
|
|
|
|
tag: "latest"
|
|
|
|
- image: "fedora"
|
|
|
|
tag: "rawhide"
|
|
|
|
- image: "opensuse"
|
|
|
|
tag: "latest"
|
|
|
|
- image: "ubuntu"
|
|
|
|
tag: "latest"
|
2023-02-17 12:06:35 +01:00
|
|
|
- image: "ubuntu"
|
|
|
|
tag: "focal"
|
2021-02-13 14:20:18 +01:00
|
|
|
- image: "ubuntu"
|
|
|
|
tag: "bionic"
|
|
|
|
steps:
|
|
|
|
- name: checkout
|
2023-02-17 12:06:35 +01:00
|
|
|
uses: actions/checkout@v3
|
2021-02-13 14:20:18 +01:00
|
|
|
with:
|
|
|
|
path: "${{ github.repository }}"
|
|
|
|
- name: disable apparmor for mysql
|
|
|
|
run: sudo ln -s /etc/apparmor.d/usr.sbin.mysqld /etc/apparmor.d/disable/
|
|
|
|
- name: parse apparmor for mysql
|
|
|
|
run: sudo apparmor_parser -R /etc/apparmor.d/usr.sbin.mysqld
|
|
|
|
- name: molecule
|
2023-02-17 12:06:35 +01:00
|
|
|
uses: robertdebock/molecule-action@5.0.0
|
2021-02-13 14:20:18 +01:00
|
|
|
with:
|
|
|
|
image: ${{ matrix.config.image }}
|
|
|
|
tag: ${{ matrix.config.tag }}
|