Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add ansible-core 2.16 to the test matrix #328

Merged
merged 2 commits into from
Sep 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 26 additions & 1 deletion .azure-pipelines/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,15 @@ stages:
- name: Sanity
test: "devel/sanity/1"

- stage: Ansible_2_16
displayName: Sanity 2.16
dependsOn: []
jobs:
- template: templates/matrix.yml
parameters:
targets:
- name: Sanity
test: "2.16/sanity/1"
- stage: Ansible_2_15
displayName: Sanity 2.15
dependsOn: []
Expand Down Expand Up @@ -87,7 +96,21 @@ stages:
- 3
targets:
- name: hcloud
test: "devel/hcloud/3.9"
test: "devel/hcloud/3.10"

- stage: Hetzner_2_16
displayName: Hetzner 2.16
dependsOn: []
jobs:
- template: templates/matrix.yml
parameters:
groups:
- 1
- 2
- 3
targets:
- name: hcloud
test: "2.16/hcloud/3.10"

- stage: Hetzner_2_15
displayName: Hetzner 2.15
Expand Down Expand Up @@ -136,10 +159,12 @@ stages:
condition: succeededOrFailed()
dependsOn:
- Ansible_devel
- Ansible_2_16
- Ansible_2_15
- Ansible_2_14
- Ansible_2_13
- Hetzner_devel
- Hetzner_2_16
- Hetzner_2_15
- Hetzner_2_14
- Hetzner_2_13
Expand Down