[stable-8] Replace devel with stable-2.18 in CI (#8911)

Replace devel with stable-2.18 in CI.
This commit is contained in:
Felix Fontein 2024-09-24 13:46:47 +03:00 committed by GitHub
parent 4bd6b35d31
commit 4a0da7fcbb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 72 additions and 71 deletions

View file

@ -59,14 +59,14 @@ pool: Standard
stages: stages:
### Sanity ### Sanity
- stage: Sanity_devel - stage: Sanity_2_18
displayName: Sanity devel displayName: Sanity 2.18
dependsOn: [] dependsOn: []
jobs: jobs:
- template: templates/matrix.yml - template: templates/matrix.yml
parameters: parameters:
nameFormat: Test {0} nameFormat: Test {0}
testFormat: devel/sanity/{0} testFormat: 2.18/sanity/{0}
targets: targets:
- test: 1 - test: 1
- test: 2 - test: 2
@ -113,14 +113,14 @@ stages:
- test: 3 - test: 3
- test: 4 - test: 4
### Units ### Units
- stage: Units_devel - stage: Units_2_18
displayName: Units devel displayName: Units 2.18
dependsOn: [] dependsOn: []
jobs: jobs:
- template: templates/matrix.yml - template: templates/matrix.yml
parameters: parameters:
nameFormat: Python {0} nameFormat: Python {0}
testFormat: devel/units/{0}/1 testFormat: 2.18/units/{0}/1
targets: targets:
- test: 3.8 - test: 3.8
- test: 3.9 - test: 3.9
@ -164,13 +164,13 @@ stages:
- test: "3.10" - test: "3.10"
## Remote ## Remote
- stage: Remote_devel_extra_vms - stage: Remote_2_18_extra_vms
displayName: Remote devel extra VMs displayName: Remote 2.18 extra VMs
dependsOn: [] dependsOn: []
jobs: jobs:
- template: templates/matrix.yml - template: templates/matrix.yml
parameters: parameters:
testFormat: devel/{0} testFormat: 2.18/{0}
targets: targets:
- name: Alpine 3.20 - name: Alpine 3.20
test: alpine/3.20 test: alpine/3.20
@ -182,13 +182,13 @@ stages:
test: ubuntu/24.04 test: ubuntu/24.04
groups: groups:
- vm - vm
- stage: Remote_devel - stage: Remote_2_18
displayName: Remote devel displayName: Remote 2.18
dependsOn: [] dependsOn: []
jobs: jobs:
- template: templates/matrix.yml - template: templates/matrix.yml
parameters: parameters:
testFormat: devel/{0} testFormat: 2.18/{0}
targets: targets:
- name: macOS 14.3 - name: macOS 14.3
test: macos/14.3 test: macos/14.3
@ -262,13 +262,13 @@ stages:
- 3 - 3
### Docker ### Docker
- stage: Docker_devel - stage: Docker_2_18
displayName: Docker devel displayName: Docker 2.18
dependsOn: [] dependsOn: []
jobs: jobs:
- template: templates/matrix.yml - template: templates/matrix.yml
parameters: parameters:
testFormat: devel/linux/{0} testFormat: 2.18/linux/{0}
targets: targets:
- name: Fedora 40 - name: Fedora 40
test: fedora40 test: fedora40
@ -336,13 +336,13 @@ stages:
- 3 - 3
### Community Docker ### Community Docker
- stage: Docker_community_devel - stage: Docker_community_2_18
displayName: Docker (community images) devel displayName: Docker (community images) 2.18
dependsOn: [] dependsOn: []
jobs: jobs:
- template: templates/matrix.yml - template: templates/matrix.yml
parameters: parameters:
testFormat: devel/linux-community/{0} testFormat: 2.18/linux-community/{0}
targets: targets:
- name: Debian Bullseye - name: Debian Bullseye
test: debian-bullseye/3.9 test: debian-bullseye/3.9
@ -356,75 +356,76 @@ stages:
- 3 - 3
### Generic ### Generic
- stage: Generic_devel # Right now all generic tests are disabled. Uncomment when at least one of them is re-enabled.
displayName: Generic devel # - stage: Generic_2_18
dependsOn: [] # displayName: Generic 2.18
jobs: # dependsOn: []
- template: templates/matrix.yml # jobs:
parameters: # - template: templates/matrix.yml
nameFormat: Python {0} # parameters:
testFormat: devel/generic/{0}/1 # nameFormat: Python {0}
targets: # testFormat: 2.18/generic/{0}/1
- test: '3.8' # targets:
- test: '3.11' # - test: '3.8'
- test: '3.13' # - test: '3.11'
- stage: Generic_2_17 # - test: '3.13'
displayName: Generic 2.17 # - stage: Generic_2_17
dependsOn: [] # displayName: Generic 2.17
jobs: # dependsOn: []
- template: templates/matrix.yml # jobs:
parameters: # - template: templates/matrix.yml
nameFormat: Python {0} # parameters:
testFormat: 2.17/generic/{0}/1 # nameFormat: Python {0}
targets: # testFormat: 2.17/generic/{0}/1
- test: '3.7' # targets:
- test: '3.12' # - test: '3.7'
- stage: Generic_2_16 # - test: '3.12'
displayName: Generic 2.16 # - stage: Generic_2_16
dependsOn: [] # displayName: Generic 2.16
jobs: # dependsOn: []
- template: templates/matrix.yml # jobs:
parameters: # - template: templates/matrix.yml
nameFormat: Python {0} # parameters:
testFormat: 2.16/generic/{0}/1 # nameFormat: Python {0}
targets: # testFormat: 2.16/generic/{0}/1
- test: '2.7' # targets:
- test: '3.6' # - test: '2.7'
- test: '3.11' # - test: '3.6'
- stage: Generic_2_15 # - test: '3.11'
displayName: Generic 2.15 # - stage: Generic_2_15
dependsOn: [] # displayName: Generic 2.15
jobs: # dependsOn: []
- template: templates/matrix.yml # jobs:
parameters: # - template: templates/matrix.yml
nameFormat: Python {0} # parameters:
testFormat: 2.15/generic/{0}/1 # nameFormat: Python {0}
targets: # testFormat: 2.15/generic/{0}/1
- test: '3.9' # targets:
# - test: '3.9'
- stage: Summary - stage: Summary
condition: succeededOrFailed() condition: succeededOrFailed()
dependsOn: dependsOn:
- Sanity_devel - Sanity_2_18
- Sanity_2_17 - Sanity_2_17
- Sanity_2_16 - Sanity_2_16
- Sanity_2_15 - Sanity_2_15
- Units_devel - Units_2_18
- Units_2_17 - Units_2_17
- Units_2_16 - Units_2_16
- Units_2_15 - Units_2_15
- Remote_devel_extra_vms - Remote_2_18_extra_vms
- Remote_devel - Remote_2_18
- Remote_2_17 - Remote_2_17
- Remote_2_16 - Remote_2_16
- Remote_2_15 - Remote_2_15
- Docker_devel - Docker_2_18
- Docker_2_17 - Docker_2_17
- Docker_2_16 - Docker_2_16
- Docker_2_15 - Docker_2_15
- Docker_community_devel - Docker_community_2_18
# Right now all generic tests are disabled. Uncomment when at least one of them is re-enabled. # Right now all generic tests are disabled. Uncomment when at least one of them is re-enabled.
# - Generic_devel # - Generic_2_18
# - Generic_2_17 # - Generic_2_17
# - Generic_2_16 # - Generic_2_16
# - Generic_2_15 # - Generic_2_15

View file

@ -37,7 +37,7 @@ For more information about communication, see the [Ansible communication guide](
## Tested with Ansible ## Tested with Ansible
Tested with the current ansible-core 2.13, ansible-core 2.14, ansible-core 2.15, ansible-core 2.16, ansible-core 2.17 releases and the current development version of ansible-core. Ansible-core versions before 2.13.0 are not supported. This includes all ansible-base 2.10 and Ansible 2.9 releases. Tested with the current ansible-core 2.13, ansible-core 2.14, ansible-core 2.15, ansible-core 2.16, ansible-core 2.17, and ansible-core 2.18 releases of ansible-core. Ansible-core versions before 2.13.0 are not supported. This includes all ansible-base 2.10 and Ansible 2.9 releases.
## External requirements ## External requirements