Add RHEL 10.0 to CI. (#899)

This commit is contained in:
Felix Fontein
2025-05-21 22:16:39 +02:00
committed by GitHub
parent 3fd94c354a
commit 41b71bb60c
2 changed files with 8 additions and 2 deletions

View File

@@ -184,6 +184,8 @@ stages:
targets:
- name: macOS 15.3
test: macos/15.3
- name: RHEL 10.0
test: rhel/10.0
- name: RHEL 9.5
test: rhel/9.5
- name: FreeBSD 14.2

View File

@@ -3,9 +3,13 @@
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
- name: RedHat - Enable the dynamic CA configuration feature
- name: RedHat - Enable the dynamic CA configuration feature (RHEL up to 9)
command: update-ca-trust force-enable
when: ansible_os_family == 'RedHat' and ansible_distribution != "Fedora"
when: ansible_os_family == 'RedHat' and ansible_distribution != "Fedora" and (ansible_distribution_major_version | int) < 10
- name: RedHat - Enable the dynamic CA configuration feature (RHEL 10+)
command: update-ca-trust
when: ansible_os_family == 'RedHat' and ansible_distribution != "Fedora" and (ansible_distribution_major_version | int) >= 10
- name: RedHat - Retrieve test cacert
get_url: