mirror of
https://github.com/ansible-collections/community.docker.git
synced 2025-12-17 20:38:42 +00:00
[stable-2] Move ansible-core 2.13 to EOL CI (#687)
* Move ansible-core 2.13 to EOL CI. * Replace CentOS 7 by Alpine 3.
This commit is contained in:
parent
a9c1d1ce1a
commit
d5dbb437c9
@ -61,17 +61,6 @@ stages:
|
|||||||
test: '2.14/sanity/extra'
|
test: '2.14/sanity/extra'
|
||||||
- name: Units
|
- name: Units
|
||||||
test: '2.14/units/1'
|
test: '2.14/units/1'
|
||||||
- stage: Ansible_2_13
|
|
||||||
displayName: Sanity & Units 2.13
|
|
||||||
dependsOn: []
|
|
||||||
jobs:
|
|
||||||
- template: templates/matrix.yml
|
|
||||||
parameters:
|
|
||||||
targets:
|
|
||||||
- name: Sanity
|
|
||||||
test: '2.13/sanity/1'
|
|
||||||
- name: Units
|
|
||||||
test: '2.13/units/1'
|
|
||||||
|
|
||||||
### Docker
|
### Docker
|
||||||
- stage: Docker_2_14
|
- stage: Docker_2_14
|
||||||
@ -97,25 +86,6 @@ stages:
|
|||||||
groups:
|
groups:
|
||||||
- 4
|
- 4
|
||||||
- 5
|
- 5
|
||||||
- stage: Docker_2_13
|
|
||||||
displayName: Docker 2.13
|
|
||||||
dependsOn: []
|
|
||||||
jobs:
|
|
||||||
- template: templates/matrix.yml
|
|
||||||
parameters:
|
|
||||||
testFormat: 2.13/linux/{0}
|
|
||||||
targets:
|
|
||||||
- name: CentOS 7
|
|
||||||
test: centos7
|
|
||||||
- name: Fedora 35
|
|
||||||
test: fedora35
|
|
||||||
- name: openSUSE 15 py2
|
|
||||||
test: opensuse15py2
|
|
||||||
- name: Alpine 3
|
|
||||||
test: alpine3
|
|
||||||
groups:
|
|
||||||
- 4
|
|
||||||
- 5
|
|
||||||
|
|
||||||
### Community Docker
|
### Community Docker
|
||||||
- stage: Docker_community_2_14
|
- stage: Docker_community_2_14
|
||||||
@ -154,22 +124,6 @@ stages:
|
|||||||
- 3
|
- 3
|
||||||
- 4
|
- 4
|
||||||
- 5
|
- 5
|
||||||
- stage: Remote_2_13
|
|
||||||
displayName: Remote 2.13
|
|
||||||
dependsOn: []
|
|
||||||
jobs:
|
|
||||||
- template: templates/matrix.yml
|
|
||||||
parameters:
|
|
||||||
nameFormat: RHEL {0}
|
|
||||||
testFormat: 2.13/rhel/{0}
|
|
||||||
targets:
|
|
||||||
- test: '8.5'
|
|
||||||
groups:
|
|
||||||
- 1
|
|
||||||
- 2
|
|
||||||
- 3
|
|
||||||
- 4
|
|
||||||
- 5
|
|
||||||
|
|
||||||
## Finally
|
## Finally
|
||||||
|
|
||||||
@ -177,11 +131,8 @@ stages:
|
|||||||
condition: succeededOrFailed()
|
condition: succeededOrFailed()
|
||||||
dependsOn:
|
dependsOn:
|
||||||
- Ansible_2_14
|
- Ansible_2_14
|
||||||
- Ansible_2_13
|
|
||||||
- Remote_2_14
|
- Remote_2_14
|
||||||
- Remote_2_13
|
|
||||||
- Docker_2_14
|
- Docker_2_14
|
||||||
- Docker_2_13
|
|
||||||
- Docker_community_2_14
|
- Docker_community_2_14
|
||||||
jobs:
|
jobs:
|
||||||
- template: templates/coverage.yml
|
- template: templates/coverage.yml
|
||||||
|
|||||||
37
.github/workflows/ansible-test.yml
vendored
37
.github/workflows/ansible-test.yml
vendored
@ -26,6 +26,7 @@ jobs:
|
|||||||
- '2.10'
|
- '2.10'
|
||||||
- '2.11'
|
- '2.11'
|
||||||
- '2.12'
|
- '2.12'
|
||||||
|
- '2.13'
|
||||||
# Ansible-test on various stable branches does not yet work well with cgroups v2.
|
# Ansible-test on various stable branches does not yet work well with cgroups v2.
|
||||||
# Since ubuntu-latest now uses Ubuntu 22.04, we need to fall back to the ubuntu-20.04
|
# Since ubuntu-latest now uses Ubuntu 22.04, we need to fall back to the ubuntu-20.04
|
||||||
# image for these stable branches. The list of branches where this is necessary will
|
# image for these stable branches. The list of branches where this is necessary will
|
||||||
@ -65,6 +66,7 @@ jobs:
|
|||||||
- '2.10'
|
- '2.10'
|
||||||
- '2.11'
|
- '2.11'
|
||||||
- '2.12'
|
- '2.12'
|
||||||
|
- '2.13'
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: >-
|
- name: >-
|
||||||
@ -171,6 +173,41 @@ jobs:
|
|||||||
docker: ubuntu1804
|
docker: ubuntu1804
|
||||||
python: ''
|
python: ''
|
||||||
target: shippable/posix/group5/
|
target: shippable/posix/group5/
|
||||||
|
# 2.13
|
||||||
|
# NB: We originally wanted to use centos7, but that requires cgroups v1.
|
||||||
|
# So we used alpine3 instead.
|
||||||
|
- ansible: '2.13'
|
||||||
|
docker: alpine3
|
||||||
|
python: ''
|
||||||
|
target: shippable/posix/group4/
|
||||||
|
- ansible: '2.13'
|
||||||
|
docker: alpine3
|
||||||
|
python: ''
|
||||||
|
target: shippable/posix/group5/
|
||||||
|
- ansible: '2.13'
|
||||||
|
docker: fedora35
|
||||||
|
python: ''
|
||||||
|
target: shippable/posix/group4/
|
||||||
|
- ansible: '2.13'
|
||||||
|
docker: fedora35
|
||||||
|
python: ''
|
||||||
|
target: shippable/posix/group5/
|
||||||
|
- ansible: '2.13'
|
||||||
|
docker: opensuse15py2
|
||||||
|
python: ''
|
||||||
|
target: shippable/posix/group4/
|
||||||
|
- ansible: '2.13'
|
||||||
|
docker: opensuse15py2
|
||||||
|
python: ''
|
||||||
|
target: shippable/posix/group5/
|
||||||
|
- ansible: '2.13'
|
||||||
|
docker: alpine3
|
||||||
|
python: ''
|
||||||
|
target: shippable/posix/group4/
|
||||||
|
- ansible: '2.13'
|
||||||
|
docker: alpine3
|
||||||
|
python: ''
|
||||||
|
target: shippable/posix/group5/
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: >-
|
- name: >-
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user