Skip to content

Commit

Permalink
ci(molecule): use reusable workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
maxthier committed Dec 5, 2024
1 parent 0cc61f9 commit 02bb706
Showing 1 changed file with 39 additions and 49 deletions.
88 changes: 39 additions & 49 deletions .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,53 +14,43 @@ on:
- cron: '3 2 2 * *'

jobs:
lint:
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v3
- name: ansible-lint
uses: ansible/ansible-lint@main

test:
needs:
- lint
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
config:
- image: "debian"
tag: "latest"
- image: "debian"
tag: "bullseye"
- image: "enterpriselinux"
tag: "8"
- image: "enterpriselinux"
tag: "latest"
- image: "fedora"
tag: "39"
- image: "opensuse"
tag: "latest"
- image: "ubuntu"
tag: "latest"
- image: "ubuntu"
tag: "focal"
steps:
- name: checkout
uses: actions/checkout@v3
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
uses: robertdebock/[email protected]
with:
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}
scenario: default
uses: adfinis/github-workflows-bareos/.github/workflows/[email protected]
with:
systems: |
{
"config": [
{
"image": "debian",
"tag": "latest"
},
{
"image": "debian",
"tag": "bullseye"
},
{
"image": "enterpriselinux",
"tag": "8"
},
{
"image": "enterpriselinux",
"tag": "latest"
},
{
"image": "fedora",
"tag": "39"
},
{
"image": "opensuse",
"tag": "latest"
},
{
"image": "ubuntu",
"tag": "latest"
},
{
"image": "ubuntu",
"tag": "focal"
}
]
}

0 comments on commit 02bb706

Please sign in to comment.