update workflows and molecule configs #41
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: CI | |
on: | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'warning' | |
type: choice | |
options: | |
- info | |
- warning | |
- debug | |
push: | |
branches: | |
- 'main' | |
- 'feature/**' | |
- 'fix/**' | |
- '!doc/**' | |
pull_request: | |
branches: | |
- 'main' | |
- 'feature/**' | |
- 'fix/**' | |
- '!doc/**' | |
env: | |
COLLECTION_NAMESPACE: bodsch | |
COLLECTION_NAME: icinga | |
PY_COLORS: '1' | |
ANSIBLE_FORCE_COLOR: '1' | |
jobs: | |
arch: | |
name: "${{ matrix.image }}: ${{ matrix.collection_role }} (ansible ${{ matrix.ansible-version }}, python ${{ matrix.python_version }})" | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
image: | |
- archlinux:latest | |
ansible-version: | |
- '8.5' | |
python_version: | |
- "3.10" | |
- "3.11" | |
scenario: | |
- default | |
collection_role: | |
- icinga2 | |
# - icinga2-notifications | |
- icingadb | |
- icingaweb2 | |
- icingaweb2_modules | |
- icingaweb2_themes | |
steps: | |
- name: check out the codebase. | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.workflow_run.head_branch }} | |
- name: 🐍 set up python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "${{ matrix.python_version }}" | |
- name: install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r test-requirements.txt | |
- name: force reinstall of community.docker | |
run: | | |
mkdir -p /home/runner/.ansible/collections | |
ansible-galaxy collection install community.docker --force | |
- name: Install collection | |
run: | | |
make \ | |
install | |
- name: test with tox | |
run: | | |
make \ | |
test \ | |
-e TOX_ANSIBLE="ansible_${{ matrix.ansible-version }}" \ | |
-e DISTRIBUTION="${{ matrix.image }}" \ | |
-e COLLECTION_ROLE="${{ matrix.collection_role }}" \ | |
-e COLLECTION_SCENARIO="${{ matrix.scenario }}" |