mirror of
https://github.com/prometheus-community/ansible
synced 2024-11-22 11:53:12 +00:00
dc2007fab5
Signed-off-by: gardar <gardar@users.noreply.github.com>
48 lines
1.7 KiB
YAML
48 lines
1.7 KiB
YAML
---
|
|
name: Ansible Integration Test
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
targets:
|
|
required: true
|
|
type: string
|
|
ansible-core-versions:
|
|
required: false
|
|
default: '["stable-2.14"]'
|
|
type: string
|
|
target-python-versions:
|
|
required: false
|
|
default: '["default"]'
|
|
type: string
|
|
coverage:
|
|
required: false
|
|
default: auto
|
|
type: string
|
|
|
|
jobs:
|
|
ansible-test-integration:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
max-parallel: 10
|
|
matrix:
|
|
targets: ${{ fromJson(inputs.targets) }}
|
|
ansible-core-versions: ${{ fromJson(inputs.ansible-core-versions) }}
|
|
target-python-versions: ${{ fromJson(inputs.target-python-versions) }}
|
|
|
|
name: "${{ matrix.targets.name }}-${{ matrix.ansible-core-versions }}"
|
|
steps:
|
|
- name: "Perform ${{ matrix.targets.test }} integration test with ansible-test"
|
|
uses: ansible-community/ansible-test-gh-action@release/v1
|
|
with:
|
|
ansible-core-version: ${{ matrix.ansible-core-versions }}
|
|
target-python-version: ${{ matrix.target-python-versions }}
|
|
controller-python-version: auto
|
|
docker-image: "--docker-privileged" # Workaround because ansible-test action doesn't support setting privileged flag
|
|
testing-type: integration
|
|
target: ${{ matrix.targets.test }}
|
|
coverage: ${{ inputs.coverage }}
|
|
ansible-core-github-repository-slug: ${{ contains(fromJson('["stable-2.9", "stable-2.10", "stable-2.11"]'), matrix.ansible-core-versions) &&
|
|
'ansible-community/eol-ansible' || 'ansible/ansible' }}
|
|
env:
|
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|