Merge pull request #11 from adfinis/fix/github_ci #99
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Ansible Molecule | |
on: | |
push: | |
tags_ignore: | |
- '*' | |
pull_request: | |
schedule: | |
- cron: '3 2 2 * *' | |
jobs: | |
lint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: ansible-lint | |
uses: ansible-community/ansible-lint-action@main | |
test: | |
needs: | |
- lint | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- image: "debian" | |
tag: "latest" | |
- image: "debian" | |
tag: "bullseye" | |
- image: "debian" | |
tag: "buster" | |
- image: "enterpriselinux" | |
tag: "8" | |
- image: "enterpriselinux" | |
tag: "latest" | |
- image: "fedora" | |
tag: "38" | |
- image: "fedora" | |
tag: "39" | |
# TODO no packages for fedora 40 yet: https://download.bareos.org/current/ | |
# pipeline will fail for now. replace 38 as soon as 40 is ready and working. | |
- image: "fedora" | |
tag: "latest" | |
- image: "opensuse" | |
tag: "latest" | |
- image: "ubuntu" | |
tag: "latest" | |
- image: "ubuntu" | |
tag: "focal" | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- 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: Set up Python 3. | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: molecule | |
run: molecule converge | |
env: | |
image: ${{ matrix.config.image }} | |
tag: ${{ matrix.config.tag }} |