1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-03-22 05:09:12 +00:00

Add RHEL 10.0 to CI (#10164)

Add RHEL 10.0 to CI.
This commit is contained in:
Felix Fontein 2025-05-22 07:06:26 +02:00 committed by GitHub
parent 9d7b3f13bd
commit 2a18a07bdc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 35 additions and 1 deletions

View file

@ -9,7 +9,15 @@
# SPDX-License-Identifier: GPL-3.0-or-later
- name: Include OS-specific variables
include_vars: '{{ ansible_os_family }}.yml'
include_vars: '{{ lookup("first_found", params) }}'
vars:
params:
files:
- '{{ ansible_distribution }}-{{ ansible_distribution_version }}.yml'
- '{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml'
- '{{ ansible_os_family }}.yml'
paths:
- '{{ role_path }}/vars'
- name: Install dependencies
become: true