Skip to content

remove debug msg

remove debug msg #172

Workflow file for this run

---
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: core
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
defaults:
run:
working-directory: 'ansible-collection-core'
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"
- "3.12"
scenario:
- default
collection_role:
- pacman
- fail2ban
- snakeoil
- syslog_ng
- logrotate
- openvpn
steps:
- name: check out the codebase.
uses: actions/checkout@v4
with:
path: 'ansible-collection-core'
- 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 }}"
# debian:
# 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:
# - debian:12
# ansible-version:
# - '8.5'
# python_version:
# - "3.10"
# - "3.11"
# scenario:
# - default
# collection_role:
# - pacman
# - fail2ban
# - snakeoil
# - syslog_ng
# - logrotate
# - openvpn
#
# steps:
# - name: check out the codebase.
# uses: actions/checkout@v4
# with:
# path: 'ansible-collection-core'
#
# - 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 }}"
#