Skip to content

update molecule for docker_sd #2

update molecule for docker_sd

update molecule for docker_sd #2

Workflow file for this run

---
name: "service: docker_sd"
on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
push:
branches:
- 'main'
- 'feature/**'
- 'fix/**'
- '!doc/**'
paths:
- "!Makefile"
- "!README.md"
- 'roles/docker_sd/**'
- '.github/workflows/test_role_docker_sd.yml'
- '.config/ansible-lint.yml'
- '.yamllint'
pull_request:
branches:
- 'main'
- 'feature/**'
- 'fix/**'
- '!doc/**'
paths:
- "!Makefile"
- "!README.md"
- 'roles/docker_sd/**'
- '.github/workflows/test_role_docker_sd.yml'
- '.config/ansible-lint.yml'
- '.yamllint'
env:
COLLECTION_NAMESPACE: bodsch
COLLECTION_NAME: prometheus
jobs:
debian:
name: "${{ matrix.image }} / ${{ matrix.scenario }} / ${{ matrix.ansible-version }} / ${{ matrix.python_version }}"
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
image:
- debian:12
ansible-version:
- '8.5'
python_version:
- "3.10"
- "3.11"
scenario:
- default
collection_role:
- docker_sd
steps:
- name: check out the codebase.
uses: actions/checkout@v4
- 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 ${{ matrix.collection_role }} - ${{ matrix.scenario }}
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 }}"
ubuntu:
name: "${{ matrix.image }} / ${{ matrix.scenario }} / ${{ matrix.ansible-version }} / ${{ matrix.python_version }}"
runs-on: ubuntu-20.04
needs:
- debian
strategy:
fail-fast: false
matrix:
image:
- ubuntu:22.04
ansible-version:
- '8.5'
python_version:
- "3.10"
- "3.11"
scenario:
- default
collection_role:
- docker_sd
steps:
- name: check out the codebase.
uses: actions/checkout@v4
- 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 ${{ matrix.collection_role }} - ${{ matrix.scenario }}
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 }}"
scenarios:
name: "${{ matrix.image }} / ${{ matrix.scenario }} / ${{ matrix.ansible-version }} / ${{ matrix.python_version }}"
runs-on: ubuntu-20.04
needs:
- debian
strategy:
fail-fast: false
matrix:
image:
- debian:12
ansible-version:
- '8.5'
python_version:
- "3.10"
- "3.11"
scenario:
- configured
- latest
collection_role:
- docker_sd
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 ${{ matrix.collection_role }} - ${{ matrix.scenario }}
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 }}"