Skip to content

Commit 240ead0

Browse files
authored
Remove ansible-core==2.14 from unit tests worflow matrix (#155)
* Remove ansible-core==2.14 from unit tests matrix * adding stable-2.17 for sanity and unit
1 parent a502cf8 commit 240ead0

File tree

3 files changed

+18
-19
lines changed

3 files changed

+18
-19
lines changed

.github/workflows/sanity.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,15 @@ on:
88
default: ""
99
matrix_exclude:
1010
# https://docs.ansible.com/ansible/latest/reference_appendices/release_and_maintenance.html#ansible-core-support-matrix
11-
# 2.14 supports Python 3.9-3.11
1211
# 2.15 supports Python 3.9-3.11
1312
# 2.16 supports Python 3.10-3.12
13+
# 2.17 supports Python 3.10-3.12
1414
# https://docs.ansible.com/ansible/devel/roadmap/ROADMAP_2_17.html
1515
# milestone is 2.17 until after 2.17 branches from devel
1616
# devel is 2.17 until 2024-04-01
1717
# remove 3.12/milestone from matrix_exclude when milestone is next forwarded
1818
default: >-
1919
[
20-
{
21-
"ansible-version": "stable-2.14",
22-
"python-version": "3.12"
23-
},
2420
{
2521
"ansible-version": "stable-2.15",
2622
"python-version": "3.12"
@@ -29,6 +25,10 @@ on:
2925
"ansible-version": "stable-2.16",
3026
"python-version": "3.9"
3127
},
28+
{
29+
"ansible-version": "stable-2.17",
30+
"python-version": "3.9"
31+
},
3232
{
3333
"ansible-version": "milestone",
3434
"python-version": "3.9"
@@ -70,6 +70,7 @@ jobs:
7070
ansible-version:
7171
- stable-2.15
7272
- stable-2.16
73+
- stable-2.17
7374
- milestone
7475
- devel
7576
python-version:

.github/workflows/unit_galaxy.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,13 @@ on:
88
default: ""
99
matrix_exclude:
1010
# https://docs.ansible.com/ansible/latest/reference_appendices/release_and_maintenance.html#ansible-core-support-matrix
11-
# 2.14 supports Python 3.9-3.11
1211
# 2.15 supports Python 3.9-3.11
1312
# 2.16 supports Python 3.10-3.11
1413
# https://docs.ansible.com/ansible/devel/roadmap/ROADMAP_2_16.html
1514
# milestone is 2.16 until after 2.16 branches from devel
1615
# devel is 2.16 until 2023-09-18
1716
default: >-
1817
[
19-
{
20-
"ansible-version": "stable-2.14",
21-
"python-version": "3.12"
22-
},
2318
{
2419
"ansible-version": "stable-2.15",
2520
"python-version": "3.12"
@@ -28,6 +23,10 @@ on:
2823
"ansible-version": "stable-2.16",
2924
"python-version": "3.9"
3025
},
26+
{
27+
"ansible-version": "stable-2.17",
28+
"python-version": "3.9"
29+
},
3130
{
3231
"ansible-version": "milestone",
3332
"python-version": "3.9"
@@ -60,9 +59,9 @@ jobs:
6059
os:
6160
- ubuntu-latest
6261
ansible-version:
63-
- stable-2.14
6462
- stable-2.15
6563
- stable-2.16
64+
- stable-2.17
6665
- milestone
6766
- devel
6867
python-version:

.github/workflows/unit_source.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,13 @@ on:
88
default: ""
99
matrix_exclude:
1010
# https://docs.ansible.com/ansible/latest/reference_appendices/release_and_maintenance.html#ansible-core-support-matrix
11-
# 2.14 supports Python 3.9-3.11
1211
# 2.15 supports Python 3.9-3.11
1312
# 2.16 supports Python 3.10-3.12
1413
# https://docs.ansible.com/ansible/devel/roadmap/ROADMAP_2_17.html
15-
# milestone is 2.17 until after 2.17 branches from devel
16-
# devel is 2.17 until 2024-04-01
14+
# milestone is 2.18
15+
# devel is 2.18 until xxxx-xx-xx
1716
default: >-
1817
[
19-
{
20-
"ansible-version": "stable-2.14",
21-
"python-version": "3.12"
22-
},
2318
{
2419
"ansible-version": "stable-2.15",
2520
"python-version": "3.12"
@@ -28,6 +23,10 @@ on:
2823
"ansible-version": "stable-2.16",
2924
"python-version": "3.9"
3025
},
26+
{
27+
"ansible-version": "stable-2.17",
28+
"python-version": "3.9"
29+
},
3130
{
3231
"ansible-version": "milestone",
3332
"python-version": "3.9"
@@ -50,9 +49,9 @@ jobs:
5049
fail-fast: false
5150
matrix:
5251
ansible-version:
53-
- stable-2.14
5452
- stable-2.15
5553
- stable-2.16
54+
- stable-2.17
5655
- milestone
5756
- devel
5857
python-version:

0 commit comments

Comments
 (0)