30
30
matrix :
31
31
ansible :
32
32
- ' 2.11'
33
+ - ' 2.12'
33
34
# Ansible-test on various stable branches does not yet work well with cgroups v2.
34
35
# Since ubuntu-latest now uses Ubuntu 22.04, we need to fall back to the ubuntu-20.04
35
36
# image for these stable branches. The list of branches where this is necessary will
43
44
- name : Perform sanity testing
44
45
uses : felixfontein/ansible-test-gh-action@main
45
46
with :
46
- ansible-core-github-repository-slug : felixfontein/ansible
47
+ ansible-core-github-repository-slug : ${{ contains(fromJson('["2.10", "2.11"]'), matrix.ansible) && ' felixfontein/ansible' || 'ansible/ansible' }}
47
48
ansible-core-version : stable-${{ matrix.ansible }}
48
49
coverage : ${{ github.event_name == 'schedule' && 'always' || 'never' }}
49
50
pull-request-change-detection : ' true'
@@ -66,14 +67,15 @@ jobs:
66
67
matrix :
67
68
ansible :
68
69
- ' 2.11'
70
+ - ' 2.12'
69
71
70
72
steps :
71
73
- name : >-
72
74
Perform unit testing against
73
75
Ansible version ${{ matrix.ansible }}
74
76
uses: felixfontein/ansible-test-gh-action@main
75
77
with:
76
- ansible-core-github-repository-slug: felixfontein/ansible
78
+ ansible-core-github-repository-slug: ${{ contains(fromJson('["2.10", "2.11"]'), matrix.ansible) && ' felixfontein/ansible' || 'ansible/ansible' }}
77
79
ansible-core-version: stable-${{ matrix.ansible }}
78
80
coverage: ${{ github.event_name == 'schedule' && 'always' || 'never' }}
79
81
pull-request-change-detection: 'true'
@@ -126,6 +128,31 @@ jobs:
126
128
docker : alpine3
127
129
python : ' '
128
130
target : azp/5/
131
+ # 2.12
132
+ - ansible : ' 2.12'
133
+ docker : fedora33
134
+ python : ' '
135
+ target : azp/4/
136
+ - ansible : ' 2.12'
137
+ docker : fedora33
138
+ python : ' '
139
+ target : azp/5/
140
+ - ansible : ' 2.12'
141
+ docker : fedora34
142
+ python : ' '
143
+ target : azp/4/
144
+ - ansible : ' 2.12'
145
+ docker : fedora34
146
+ python : ' '
147
+ target : azp/5/
148
+ - ansible : ' 2.12'
149
+ docker : ubuntu1804
150
+ python : ' '
151
+ target : azp/4/
152
+ - ansible : ' 2.12'
153
+ docker : ubuntu1804
154
+ python : ' '
155
+ target : azp/5/
129
156
130
157
steps :
131
158
- name : >-
@@ -134,7 +161,7 @@ jobs:
134
161
under Python ${{ matrix.python }}
135
162
uses: felixfontein/ansible-test-gh-action@main
136
163
with:
137
- ansible-core-github-repository-slug: felixfontein/ansible
164
+ ansible-core-github-repository-slug: ${{ contains(fromJson('["2.10", "2.11"]'), matrix.ansible) && ' felixfontein/ansible' || 'ansible/ansible' }}
138
165
ansible-core-version: stable-${{ matrix.ansible }}
139
166
coverage: ${{ github.event_name == 'schedule' && 'always' || 'never' }}
140
167
docker-image: ${{ matrix.docker }}
0 commit comments