-
Notifications
You must be signed in to change notification settings - Fork 138
48 lines (46 loc) · 1.73 KB
/
ansible-test-integration.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---
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 }}"