It no longer makes sense because: - we don't make any changes to 8.5 - we don't regenerate test manifests for 8.5 - osbuild-composer for 8.5 is in the rhel-8.5.0 branch Also, the latest-8.5.0 symlink was removed, which broke the CI. Signed-off-by: Ondřej Budai <ondrej@budai.cz>
35 lines
1.4 KiB
Bash
Executable file
35 lines
1.4 KiB
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
source /etc/os-release
|
|
|
|
# This isn't needed when not running on RHEL
|
|
if [[ $ID != rhel ]]; then
|
|
exit 0
|
|
fi
|
|
|
|
if [[ $ID == rhel && ${VERSION_ID%.*} == 8 ]]; then
|
|
COMPOSE_ID=$(curl -L http://download.devel.redhat.com/rhel-8/nightly/RHEL-8/latest-finished-RHEL-8.6/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-8/nightly/RHEL-8/$COMPOSE_ID}"
|
|
|
|
elif [[ $ID == rhel && ${VERSION_ID%.*} == 9 ]]; then
|
|
COMPOSE_ID=$(curl -L http://download.devel.redhat.com/rhel-9/nightly/RHEL-9-Beta/latest-RHEL-9.0/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-9/nightly/RHEL-9-Beta/$COMPOSE_ID}"
|
|
fi
|
|
|
|
# in case COMPOSE_URL was defined from the outside refresh COMPOSE_ID file,
|
|
# used for slack messages in case of success/failure
|
|
curl -L "$COMPOSE_URL/COMPOSE_ID" > COMPOSE_ID
|
|
|
|
echo "INFO: Testing COMPOSE_ID=$COMPOSE_ID at COMPOSE_URL=$COMPOSE_URL"
|
|
|
|
# Make sure the compose URL really exists
|
|
RETURN_CODE=$(curl --silent -o -I -L -s -w "%{http_code}" "${COMPOSE_URL}")
|
|
if [ "$RETURN_CODE" != 200 ]
|
|
then
|
|
echo "Compose URL $COMPOSE_URL returned error code $RETURN_CODE, exiting."
|
|
exit 1
|
|
fi
|