Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderbazhenoff committed Apr 1, 2024
1 parent 27cae60 commit ef94b94
Show file tree
Hide file tree
Showing 3 changed files with 135 additions and 3 deletions.
133 changes: 133 additions & 0 deletions .github/workflows/ansible_sanity_testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
---
name: Sanity tests
on:
workflow_call:
inputs:
collection_pre_install:
required: false
type: string
default: ""
matrix_exclude:
# https://docs.ansible.com/ansible/latest/reference_appendices/release_and_maintenance.html#ansible-core-support-matrix
# 2.14 supports Python 3.9-3.11
# 2.15 supports Python 3.9-3.11
# 2.16 supports Python 3.10-3.12
# https://docs.ansible.com/ansible/devel/roadmap/ROADMAP_2_17.html
# milestone is 2.17 until after 2.17 branches from devel
# devel is 2.17 until 2024-04-01
# remove 3.12/milestone from matrix_exclude when milestone is next forwarded
default: >-
[
{
"ansible-version": "stable-2.14",
"python-version": "3.12"
},
{
"ansible-version": "stable-2.15",
"python-version": "3.12"
},
{
"ansible-version": "stable-2.16",
"python-version": "3.9"
},
{
"ansible-version": "milestone",
"python-version": "3.9"
},
{
"ansible-version": "milestone",
"python-version": "3.12"
},
{
"ansible-version": "devel",
"python-version": "3.9"
}
]
required: false
type: string
matrix_include:
default: >-
[]
required: false
type: string
unstable:
default: >-
[
"devel",
]
required: false
type: string

jobs:
sanity:
env:
PY_COLORS: "1"
source_directory: "./source"
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
ansible-version:
- stable-2.14
- stable-2.15
- stable-2.16
- milestone
- devel
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
exclude: ${{ fromJSON(inputs.matrix_exclude) }}
include: ${{ fromJSON(inputs.matrix_include) }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ contains(fromJSON(inputs.unstable), matrix.ansible-version) }}

name: "py${{ matrix.python-version }} / ${{ matrix.os }} / ${{ matrix.ansible-version }}"
steps:
- name: Checkout the collection repository
uses: ansible-network/github_actions/.github/actions/checkout_dependency@main
with:
path: ${{ env.source_directory }}
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: "0"

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install ansible-core (${{ matrix.ansible-version }})
run: >-
python3 -m pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible-version }}.tar.gz
--disable-pip-version-check
- name: Pre install collections dependencies first so the collection install does not
run: ansible-galaxy collection install --pre ${{ inputs.collection_pre_install }} -p /home/runner/collections/
if: ${{ inputs.collection_pre_install != '' && matrix.ansible-version != 'stable-2.9' }}

- name: Read collection metadata from galaxy.yml
id: identify
uses: ansible-network/github_actions/.github/actions/identify_collection@main
with:
source_path: ${{ env.source_directory }}

- name: Build and install the collection
uses: ansible-network/github_actions/.github/actions/build_install_collection@main
with:
install_python_dependencies: false
source_path: ${{ env.source_directory }}
collection_path: ${{ steps.identify.outputs.collection_path }}
tar_file: ${{ steps.identify.outputs.tar_file }}
ansible_version: ${{ matrix.ansible-version }}

- name: Print the ansible version
run: ansible --version

- name: Print the python dependencies
run: python3 -m pip list

- name: Run sanity tests
run: ansible-test sanity --requirements --color --python ${{ matrix.python-version }}
working-directory: ${{ steps.identify.outputs.collection_path }}
1 change: 0 additions & 1 deletion .mega-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,3 @@ DISABLE_LINTERS:
DISABLE_ERRORS_LINTERS:
- REPOSITORY_DEVSKIM
- REPOSITORY_KICS
- RST_RST_LINT
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<div align='center'>
<!-- markdown-link-check-disable -->

[![MegaLinter](https://github.com/alexanderbazhenoff/ansible-collection-linux/actions/workflows/mega-linter.yml/badge.svg?branch=main)](https://megalinter.io/)
[![Ansible Sanity Teststing](https://github.com/alexanderbazhenoff/ansible-collection-linux/actions/workflows/ansible-sanity-testsing.yml/badge.svg?branch=main)](https://docs.ansible.com/ansible/latest/dev_guide/testing_sanity.html)
[![MegaLinter](https://github.com/alexanderbazhenoff/ansible-collection-linux/actions/workflows/mega_linter.yml/badge.svg?branch=1_1_10)](https://megalinter.io/)
[![Ansible Sanity Teststing](https://github.com/alexanderbazhenoff/ansible-collection-linux/actions/workflows/ansible_sanity_testsing.yml/badge.svg?branch=main)](https://docs.ansible.com/ansible/latest/dev_guide/testing_sanity.html)
[![Ansible Molecule Testsing](https://github.com/alexanderbazhenoff/ansible-collection-linux/actions/workflows/ansible-molecule-teststing.yml/badge.svg?branch=main)](https://docs.ansible.com/ansible/latest/dev_guide/testing_sanity.html)
[![Wiki](https://github.com/alexanderbazhenoff/ansible-collection-linux/actions/workflows/wiki.yml/badge.svg?branch=main)](https://github.com/alexanderbazhenoff/ansible-collection-linux/wiki)
[![Ansible Galaxy](https://github.com/alexanderbazhenoff/ansible-collection-linux/actions/workflows/ansible-galaxy-ci.yml/badge.svg?branch=main)](https://galaxy.ansible.com/ui/repo/published/alexanderbazhenoff/linux/)
Expand Down

0 comments on commit ef94b94

Please sign in to comment.