mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
By using the 'ansible-version' variable as '<2.17' allows 'pip' to install the latest version of the 2.16 series, instead of version 2.16.0 in the case '==2.16'. This ensures we run the tests with the latest supported version for the specific distro. Signed-off-by: Rafael Guterres Jeffman <rjeffman@redhat.com>
68 lines
1.9 KiB
YAML
68 lines
1.9 KiB
YAML
---
|
|
trigger:
|
|
- master
|
|
|
|
pool:
|
|
vmImage: 'ubuntu-24.04'
|
|
|
|
parameters:
|
|
# Not really a parameter, but variables cannot be arrays or dicts
|
|
# This maps the distro LATEST version to the avaiable ansible-core
|
|
# version of the latest released compose.
|
|
- name: "distro_ansible_map"
|
|
type: object
|
|
default:
|
|
- { distro: "c8s", ansible_version: "<2.17" }
|
|
# c9s should use 2.14, but this version has an invalid certificate
|
|
# and so is unsuable against ansible-galaxy.
|
|
- { distro: "c9s", ansible_version: "<2.17" }
|
|
- { distro: "c10s", ansible_version: "<2.17" }
|
|
|
|
variables:
|
|
distros: "fedora-latest,c10s,c9s,fedora-rawhide"
|
|
ansible_version: "-core >=2.18,<2.19"
|
|
|
|
stages:
|
|
|
|
# Test with repository in all "current" distros
|
|
|
|
- ${{ each distro in split(variables.distros, ',') }}:
|
|
- stage: ${{ replace(distro, '-', '_') }}_ansible_2_18
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/run_tests.yml
|
|
parameters:
|
|
build_number: $(Build.BuildNumber)
|
|
distro: ${{ distro }}
|
|
ansible_version: ${{ variables.ansible_version }}
|
|
skip_git_test: false
|
|
test_galaxy: false
|
|
|
|
# Galaxy on Fedora
|
|
|
|
- stage: galaxy_fedora_latest_ansible_2_18
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/run_tests.yml
|
|
parameters:
|
|
build_number: $(Build.BuildNumber)
|
|
distro: fedora-latest
|
|
ansible_version: ${{ variables.ansible_version }}
|
|
skip_git_test: false
|
|
test_galaxy: true
|
|
|
|
|
|
# Test with pinned ansible version for the distro
|
|
|
|
- ${{ each config in parameters.distro_ansible_map }}:
|
|
- stage: ${{ config.distro }}_distro_ansible_${{ replace(config.ansible_version, '.', '_') }}
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/run_tests.yml
|
|
parameters:
|
|
build_number: $(Build.BuildNumber)
|
|
distro: ${{ config.distro }}
|
|
ansible_version: -core${{ config.ansible_version }}
|
|
skip_git_test: false
|
|
test_galaxy: false
|