Skip to content

Commit

Permalink
CI: add support for 2.16
Browse files Browse the repository at this point in the history
With the release of 2.16, devel is now 2.17, so this change adds in
support to test 2.16 specifically.
  • Loading branch information
csmart committed Sep 25, 2023
1 parent 69cee1d commit 6c74970
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .azure-pipelines/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,18 @@ stages:
- name: Units
test: 'devel/units/1'

- stage: Ansible_2_16
displayName: Sanity & Units 2.16
dependsOn: []
jobs:
- template: templates/matrix.yml
parameters:
targets:
- name: Sanity
test: '2.16/sanity/1'
- name: Units
test: '2.16/units/1'

- stage: Ansible_2_15
displayName: Sanity & Units 2.15
dependsOn: []
Expand Down Expand Up @@ -124,6 +136,25 @@ stages:
- name: Ubuntu 22.04
test: ubuntu2204

- stage: Docker_2_16
displayName: Docker 2.16
dependsOn: []
jobs:
- template: templates/matrix.yml
parameters:
testFormat: 2.16/linux/{0}/1
targets:
- name: CentOS 7
test: centos7
- name: Fedora 38
test: fedora38
- name: openSUSE 15 py3
test: opensuse15
- name: Ubuntu 20.04
test: ubuntu2004
- name: Ubuntu 22.04
test: ubuntu2204

- stage: Docker_2_15
displayName: Docker 2.15
dependsOn: []
Expand Down Expand Up @@ -222,6 +253,23 @@ stages:
- name: FreeBSD 13.2
test: freebsd/13.2

- stage: Remote_2_16
displayName: Remote 2.16
dependsOn: []
jobs:
- template: templates/matrix.yml
parameters:
testFormat: '2.16/{0}/1'
targets:
- name: RHEL 7.9
test: rhel/7.9
- name: RHEL 8.8
test: rhel/8.8
- name: RHEL 9.2
test: rhel/9.2
- name: FreeBSD 13.2
test: freebsd/13.2

- stage: Remote_2_15
displayName: Remote 2.15
dependsOn: []
Expand Down Expand Up @@ -286,16 +334,19 @@ stages:
condition: succeededOrFailed()
dependsOn:
- Ansible_devel
- Ansible_2_16
- Ansible_2_15
- Ansible_2_14
- Ansible_2_13
- Ansible_2_12
- Docker_devel
- Docker_2_16
- Docker_2_15
- Docker_2_14
- Docker_2_13
- Docker_2_12
- Remote_devel
- Remote_2_16
- Remote_2_15
- Remote_2_14
- Remote_2_13
Expand Down
2 changes: 2 additions & 0 deletions tests/sanity/ignore-2.17.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
tests/utils/shippable/timing.py shebang
tests/unit/compat/builtins.py pylint:unused-import

0 comments on commit 6c74970

Please sign in to comment.