Add RHEL 10.0 to CI. (#899) (#902)

(cherry picked from commit 41b71bb60c)

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
patchback[bot]
2025-05-22 06:43:36 +02:00
committed by GitHub
parent d350b94ae6
commit 3fbf173674
2 changed files with 8 additions and 2 deletions

View File

@@ -212,6 +212,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: