mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-06-10 18:55:53 +00:00
Newer Ansible versions will require at least Python 3.8 to be used, and the build containers pipeline was requiring Python 3.6, which is EOL. This patch requests the latest Python version available for the controller, and allows it to be configured to a specific version if, and when, needed.
47 lines
974 B
YAML
47 lines
974 B
YAML
---
|
|
|
|
schedules:
|
|
- cron: "0 0 * * 0"
|
|
displayName: Weekly Sunday midnight build
|
|
branches:
|
|
include:
|
|
- master
|
|
always: true
|
|
|
|
trigger: none
|
|
|
|
pool:
|
|
vmImage: 'ubuntu-20.04'
|
|
|
|
jobs:
|
|
|
|
- template: templates/build_container.yml
|
|
parameters:
|
|
job_name_suffix: Centos7
|
|
container_name: centos-7
|
|
build_scenario_name: centos-7-build
|
|
|
|
# - template: templates/build_container.yml
|
|
# parameters:
|
|
# job_name_suffix: Centos8
|
|
# container_name: centos-8
|
|
# build_scenario_name: centos-8-build
|
|
|
|
- template: templates/build_container.yml
|
|
parameters:
|
|
job_name_suffix: C8S
|
|
container_name: c8s
|
|
build_scenario_name: c8s-build
|
|
|
|
- template: templates/build_container.yml
|
|
parameters:
|
|
job_name_suffix: Centos9
|
|
container_name: centos-9
|
|
build_scenario_name: centos-9-build
|
|
|
|
- template: templates/build_container.yml
|
|
parameters:
|
|
job_name_suffix: FedoraLatest
|
|
container_name: fedora-latest
|
|
build_scenario_name: fedora-latest-build
|