From 9c0fa75c8f64f9a8728a9a8a7b3cfcea820a8ee9 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sat, 7 Feb 2026 17:03:35 +0100 Subject: [PATCH] Use latest requests etc. with RHEL 10. (#1238) (#1239) (cherry picked from commit cacf6023b9402da17c09cff5cf9a134f8d0d36af) --- .azure-pipelines/azure-pipelines.yml | 8 ++++---- antsibull-nox.toml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.azure-pipelines/azure-pipelines.yml b/.azure-pipelines/azure-pipelines.yml index 5a55ddd1..832c094a 100644 --- a/.azure-pipelines/azure-pipelines.yml +++ b/.azure-pipelines/azure-pipelines.yml @@ -168,10 +168,10 @@ stages: parameters: testFormat: 2.20/{0} targets: - - name: RHEL 10.1 - test: rhel/10.1 - - name: RHEL 9.7 with Docker SDK, urllib3, requests from sources - test: rhel/9.7-dev-latest + - name: RHEL 10.1 with Docker SDK, urllib3, requests from sources + test: rhel/10.1-dev-latest + - name: RHEL 9.7 + test: rhel/9.7 # For some reason, Ubuntu 24.04 is *extremely* slower than RHEL 9.7 # - name: Ubuntu 24.04 # test: ubuntu/24.04 diff --git a/antsibull-nox.toml b/antsibull-nox.toml index d40da2cf..5deb4060 100644 --- a/antsibull-nox.toml +++ b/antsibull-nox.toml @@ -224,14 +224,14 @@ docker = "quay.io/ansible-community/test-image:archlinux" [[sessions.ansible_test_integration.groups.sessions]] ansible_core = "2.20" target = [ "azp/1/", "azp/2/", "azp/3/", "azp/4/", "azp/5/" ] -remote = [ "rhel/9.7" ] +remote = [ "rhel/10.1" ] ansible_vars = { force_docker_sdk_for_python_dev = { type = "value", value = true, template_value = "sdk-dev-latest" } } [[sessions.ansible_test_integration.groups.sessions]] ansible_core = "2.20" target = [ "azp/1/", "azp/2/", "azp/3/", "azp/4/", "azp/5/" ] remote = [ - "rhel/10.1", + "rhel/9.7", # For some reason, Ubuntu 24.04 is *extremely* slower than RHEL 9.6 # "ubuntu/24.04", ]