From 1193187e0a3fa55c68d7541887fe82f403e481a4 Mon Sep 17 00:00:00 2001 From: Tom Koscielniak Date: Fri, 6 Dec 2024 10:25:00 +0100 Subject: [PATCH] tools/tests: Update rhel10 compose url Update a rhel 10 compose url to point to nightly instead of public beta. Fix for a failing rhel 10 nightly pipeline. --- tools/define-compose-url.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/define-compose-url.sh b/tools/define-compose-url.sh index 72e4a915d..dbe69b8b6 100755 --- a/tools/define-compose-url.sh +++ b/tools/define-compose-url.sh @@ -21,10 +21,10 @@ if [[ $ID == rhel && ${VERSION_ID%.*} == 9 ]]; then COMPOSE_URL="${COMPOSE_URL:-http://download.devel.redhat.com/rhel-9/nightly/RHEL-9/$COMPOSE_ID}" elif [[ $ID == rhel && ${VERSION_ID%.*} == 10 ]]; then - COMPOSE_ID=$(curl -L http://download.devel.redhat.com/rhel-10/nightly/RHEL-10-Public-Beta/latest-RHEL-"${VERSION_ID}"/COMPOSE_ID) + COMPOSE_ID=$(curl -L http://download.devel.redhat.com/rhel-10/nightly/RHEL-10/latest-RHEL-"${VERSION_ID}"/COMPOSE_ID) # default to a nightly tree but respect values passed from ENV so we can test rel-eng composes as well - COMPOSE_URL="${COMPOSE_URL:-http://download.devel.redhat.com/rhel-10/nightly/RHEL-10-Public-Beta/$COMPOSE_ID}" + COMPOSE_URL="${COMPOSE_URL:-http://download.devel.redhat.com/rhel-10/nightly/RHEL-10/$COMPOSE_ID}" fi # in case COMPOSE_URL was defined from the outside refresh COMPOSE_ID file,