Skip to content

Commit

Permalink
Fixup: Try to have better names
Browse files Browse the repository at this point in the history
  • Loading branch information
rjeffman committed Nov 13, 2024
1 parent 88ea9a5 commit d393ba7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions infra/azure/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ variables:
ansible_version: "-core >=2.16,<2.17"
ansible_latest: "-core"
ansible_minimum: "-core <2.16"
distros: "fedora-latest,c9s,c8s,fedora-rawhide"
distros: "fedora-latest,c9s,fedora-rawhide"

stages:

- stage: Fedora_Ansible_Latest
- stage: fedora_latest_ansible_latest
dependsOn: []
jobs:
- template: templates/group_tests.yml
Expand All @@ -23,7 +23,7 @@ stages:
ansible_version: ${{ variables.ansible_latest }}
skip_git_test: true

- stage: Fedora_Ansible_min_supported
- stage: fedora_latest_ansible_2_15
dependsOn: []
jobs:
- template: templates/group_tests.yml
Expand All @@ -36,7 +36,7 @@ stages:
# Supported distros

- ${{ each distro in split(variables.distros, ',') }}:
- stage: ${{ join('_', split(distro, '-')) }}
- stage: ${{ replace(distro, '-', '_') }}_ansible_2_16
dependsOn: []
jobs:
- template: templates/group_tests.yml
Expand All @@ -49,7 +49,7 @@ stages:

# Galaxy on Fedora

- stage: Galaxy_Fedora_Latest
- stage: galaxy_fedora_latest_ansible_2_16
dependsOn: []
jobs:
- template: templates/group_tests.yml
Expand All @@ -62,7 +62,7 @@ stages:

# CentOS 8 Stream, latest supported Ansible version.

- stage: CentOS_8_Stream
- stage: c8s_ansible_2_16
dependsOn: []
jobs:
- template: templates/group_tests.yml
Expand Down

0 comments on commit d393ba7

Please sign in to comment.