CRITICAL Failed to find driver docker. Please ensure that the driver … #346
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
--- | |
# | |
# Ansible managed | |
# | |
name: Ansible Molecule | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
schedule: | |
- cron: '3 2 2 * *' | |
jobs: | |
lint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- 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: "alpine" | |
tag: "latest" | |
- image: "amazonlinux" | |
tag: "latest" | |
- image: "enterpriselinux" | |
tag: "8" | |
- image: "enterpriselinux" | |
tag: "latest" | |
- image: "debian" | |
tag: "latest" | |
- image: "debian" | |
tag: "bullseye" | |
- image: "fedora" | |
tag: "39" | |
- image: "fedora" | |
tag: "latest" | |
- image: "fedora" | |
tag: "rawhide" | |
- image: "opensuse" | |
tag: "latest" | |
- image: "ubuntu" | |
tag: "latest" | |
- image: "ubuntu" | |
tag: "jammy" | |
- image: "ubuntu" | |
tag: "focal" | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
# with: | |
# path: "${{ github.repository }}" | |
- name: Debug | |
run: | | |
pwd | |
ls -la | |
# - name: molecule | |
# uses: robertdebock/[email protected] | |
# with: | |
# image: ${{ matrix.config.image }} | |
# tag: ${{ matrix.config.tag }} | |
- 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 molecule molecule-plugins[docker] docker ansible | |
- name: Run Molecule tests. | |
run: molecule test | |
env: | |
# PY_COLORS: '1' | |
# ANSIBLE_FORCE_COLOR: '1' | |
# MOLECULE_DISTRO: ${{ matrix.con }} | |
image: ${{ matrix.config.image }} | |
tag: ${{ matrix.config.tag }} |