From 72d3ab8e04ecdd8aca97a43b29efb2b969c26a4b Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman <rjeffman@redhat.com> Date: Tue, 19 Sep 2023 15:41:41 -0300 Subject: [PATCH] upstream ci: Run PR checks against the oldest supported ansible-core Recently, a change in the deployment roles forced the change to the minimum version of ansible-core, and the change was unnoticed until reported. With this patch, we ensure all PRs checks are executed against the minimun supported ansible-core version, so we can ensure that both documentation and role metadata are correct and still valid. --- tests/azure/azure-pipelines.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tests/azure/azure-pipelines.yml b/tests/azure/azure-pipelines.yml index dab6977f..ab28bb11 100644 --- a/tests/azure/azure-pipelines.yml +++ b/tests/azure/azure-pipelines.yml @@ -20,6 +20,17 @@ stages: # Fedora +- stage: Fedora_Ansible_min_supported + dependsOn: [] + jobs: + - template: templates/group_tests.yml + parameters: + build_number: $(Build.BuildNumber) + scenario: fedora-latest + ansible_version: "-core <2.14" + +# Fedora + - stage: Fedora_Latest dependsOn: [] jobs: -- GitLab