mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
CentOS 8 images are not supported anymore, and we are using CentOS 8 Stream images. This patch removes all configuration for CentOS 8 and updates test README to point to the available container images.
54 lines
948 B
YAML
54 lines
948 B
YAML
---
|
|
trigger:
|
|
- master
|
|
|
|
pool:
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
stages:
|
|
|
|
# Fedora
|
|
|
|
- stage: Fedora_Latest
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/group_tests.yml
|
|
parameters:
|
|
build_number: $(Build.BuildNumber)
|
|
scenario: fedora-latest
|
|
ansible_version: ">=2.9,<2.10"
|
|
|
|
# CentOS 9 Stream
|
|
|
|
- stage: CentOS_9_Stream
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/group_tests.yml
|
|
parameters:
|
|
build_number: $(Build.BuildNumber)
|
|
scenario: c9s
|
|
ansible_version: ">=2.9,<2.10"
|
|
|
|
# CentOS 8 Stream
|
|
|
|
- stage: CentOS_8_Stream
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/group_tests.yml
|
|
parameters:
|
|
build_number: $(Build.BuildNumber)
|
|
scenario: c8s
|
|
ansible_version: ">=2.9,<2.10"
|
|
|
|
|
|
# CentOS 7
|
|
|
|
- stage: CentOS_7
|
|
dependsOn: []
|
|
jobs:
|
|
- template: templates/group_tests.yml
|
|
parameters:
|
|
build_number: $(Build.BuildNumber)
|
|
scenario: centos-7
|
|
ansible_version: ">=2.9,<2.10"
|