diff --git a/test/cases/ostree-ng.sh b/test/cases/ostree-ng.sh index a7f6294e4..0bc7fb476 100755 --- a/test/cases/ostree-ng.sh +++ b/test/cases/ostree-ng.sh @@ -114,11 +114,11 @@ case "${ID}-${VERSION_ID}" in OSTREE_OSNAME=fedora OS_VARIANT="fedora35" ;; - "rhel-8.6") + "rhel-8.7") OSTREE_REF="test/rhel/8/${ARCH}/edge" OS_VARIANT="rhel8-unknown" ;; - "rhel-9.0") + "rhel-9.1") OSTREE_REF="test/rhel/9/${ARCH}/edge" OS_VARIANT="rhel9-unknown" ;; diff --git a/test/cases/ostree-raw-image.sh b/test/cases/ostree-raw-image.sh index f2d484855..ad696304f 100755 --- a/test/cases/ostree-raw-image.sh +++ b/test/cases/ostree-raw-image.sh @@ -96,11 +96,11 @@ SSH_KEY=${SSH_DATA_DIR}/id_rsa SSH_KEY_PUB=$(cat "${SSH_KEY}".pub) case "${ID}-${VERSION_ID}" in - "rhel-8.6") + "rhel-8.7") OSTREE_REF="rhel/8/${ARCH}/edge" OS_VARIANT="rhel8-unknown" ;; - "rhel-9.0") + "rhel-9.1") OSTREE_REF="rhel/9/${ARCH}/edge" OS_VARIANT="rhel9-unknown" ;; diff --git a/test/cases/ostree-rebase.sh b/test/cases/ostree-rebase.sh index c9c73b0e5..b4bddb6ad 100755 --- a/test/cases/ostree-rebase.sh +++ b/test/cases/ostree-rebase.sh @@ -97,21 +97,21 @@ SSH_KEY=${SSH_DATA_DIR}/id_rsa SSH_KEY_PUB=$(cat "${SSH_KEY}".pub) case "${ID}-${VERSION_ID}" in - "rhel-8.6") + "rhel-8.7") OSTREE_REF="rhel/8/${ARCH}/edge" OS_VARIANT="rhel8-unknown" # Use a stable installer image unless it's the nightly pipeline - BOOT_LOCATION="http://download.devel.redhat.com/released/rhel-8/RHEL-8/8.5.0/BaseOS/x86_64/os/" + BOOT_LOCATION="http://download.devel.redhat.com/released/rhel-8/RHEL-8/8.6.0/BaseOS/x86_64/os/" if [ "${NIGHTLY:=false}" == "true" ]; then BOOT_LOCATION="${COMPOSE_URL:-}/compose/BaseOS/x86_64/os/" fi PARENT_REF="rhel/8/${ARCH}/edge" ;; - "rhel-9.0") + "rhel-9.1") OSTREE_REF="rhel/9/${ARCH}/edge" OS_VARIANT="rhel9-unknown" # Use a stable installer image unless it's the nightly pipeline - BOOT_LOCATION="http://download.devel.redhat.com/released/rhel-8/RHEL-8/8.5.0/BaseOS/x86_64/os/" + BOOT_LOCATION="http://download.devel.redhat.com/released/rhel-9/RHEL-9/9.0.0/BaseOS/x86_64/os/" if [ "${NIGHTLY:=false}" == "true" ]; then BOOT_LOCATION="${COMPOSE_URL:-}/compose/BaseOS/x86_64/os/" fi diff --git a/test/cases/ostree-simplified-installer.sh b/test/cases/ostree-simplified-installer.sh index 0667d0a89..cbbe761aa 100755 --- a/test/cases/ostree-simplified-installer.sh +++ b/test/cases/ostree-simplified-installer.sh @@ -114,11 +114,11 @@ SSH_KEY=${SSH_DATA_DIR}/id_rsa SSH_KEY_PUB=$(cat "${SSH_KEY}".pub) case "${ID}-${VERSION_ID}" in - "rhel-8.6") + "rhel-8.7") OSTREE_REF="rhel/8/${ARCH}/edge" OS_VARIANT="rhel8-unknown" ;; - "rhel-9.0") + "rhel-9.1") OSTREE_REF="rhel/9/${ARCH}/edge" OS_VARIANT="rhel9-unknown" ;; diff --git a/test/cases/ostree.sh b/test/cases/ostree.sh index 0f90ab71b..5e47aff85 100755 --- a/test/cases/ostree.sh +++ b/test/cases/ostree.sh @@ -33,9 +33,16 @@ case "${ID}-${VERSION_ID}" in OSTREE_REF="rhel/8/${ARCH}/edge" OS_VARIANT="rhel8-unknown" USER_IN_COMMIT="true" + BOOT_LOCATION="http://download.devel.redhat.com/released/rhel-8/RHEL-8/8.6.0/BaseOS/x86_64/os/" + ;; + "rhel-8.7") + IMAGE_TYPE=edge-commit + OSTREE_REF="rhel/8/${ARCH}/edge" + OS_VARIANT="rhel8-unknown" + USER_IN_COMMIT="true" # Use a stable installer image unless it's the nightly pipeline - BOOT_LOCATION="http://download.devel.redhat.com/released/rhel-8/RHEL-8/8.5.0/BaseOS/x86_64/os/" + BOOT_LOCATION="http://download.devel.redhat.com/released/rhel-8/RHEL-8/8.6.0/BaseOS/x86_64/os/" if [ "${NIGHTLY:=false}" == "true" ]; then BOOT_LOCATION="${COMPOSE_URL:-}/compose/BaseOS/x86_64/os/" fi @@ -45,9 +52,16 @@ case "${ID}-${VERSION_ID}" in OSTREE_REF="rhel/9/${ARCH}/edge" OS_VARIANT="rhel9.0" USER_IN_COMMIT="true" + BOOT_LOCATION="http://download.devel.redhat.com/released/rhel-9/RHEL-9/9.0.0/BaseOS/x86_64/os/" + ;; + "rhel-9.1") + IMAGE_TYPE=edge-commit + OSTREE_REF="rhel/9/${ARCH}/edge" + OS_VARIANT="rhel9-unknown" + USER_IN_COMMIT="true" # Use a stable installer image unless it's the nightly pipeline - BOOT_LOCATION="http://download.devel.redhat.com/released/rhel-8/RHEL-8/8.5.0/BaseOS/x86_64/os/" + BOOT_LOCATION="http://download.devel.redhat.com/released/rhel-9/RHEL-9/9.0.0/BaseOS/x86_64/os/" if [ "${NIGHTLY:=false}" == "true" ]; then BOOT_LOCATION="${COMPOSE_URL:-}/compose/BaseOS/x86_64/os/" fi