From e269719364123aec0783c6a8a00357a845679bd6 Mon Sep 17 00:00:00 2001 From: Naga Nandyala Date: Tue, 25 Aug 2026 20:22:31 +1000 Subject: [PATCH 1/2] {Packaging} Update UBI packages before RPM tests --- scripts/release/rpm/test_rpm_in_docker.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/release/rpm/test_rpm_in_docker.sh b/scripts/release/rpm/test_rpm_in_docker.sh index 27d77912837..fc028d29fd1 100644 --- a/scripts/release/rpm/test_rpm_in_docker.sh +++ b/scripts/release/rpm/test_rpm_in_docker.sh @@ -5,6 +5,7 @@ set -exv export USERNAME=azureuser +dnf update -y dnf --nogpgcheck install /mnt/rpm/$RPM_NAME -y dnf install git findutils $PYTHON_PACKAGE-pip -y From f7138dd6bb35402856c45066f53a9c1af2050158 Mon Sep 17 00:00:00 2001 From: Naga Nandyala Date: Wed, 26 Aug 2026 07:23:54 +1000 Subject: [PATCH 2/2] {Packaging} Limit RPM test update to Expat --- scripts/release/rpm/test_rpm_in_docker.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/release/rpm/test_rpm_in_docker.sh b/scripts/release/rpm/test_rpm_in_docker.sh index fc028d29fd1..f16cd3f0068 100644 --- a/scripts/release/rpm/test_rpm_in_docker.sh +++ b/scripts/release/rpm/test_rpm_in_docker.sh @@ -5,7 +5,8 @@ set -exv export USERNAME=azureuser -dnf update -y +# Pinned UBI 8/9 images contain an older Expat incompatible with current Python 3.12 pyexpat. +dnf update -y expat dnf --nogpgcheck install /mnt/rpm/$RPM_NAME -y dnf install git findutils $PYTHON_PACKAGE-pip -y